A link back to an incredibly useful post by the Glorious Monster. I encountered this problem after having installed .net4 on our Biztalk server. I advise taking note of Giuseppe Dimauro's comment - if you are running in an x64 environment like ourselves, you need to run regasm from the 'C:\Windows\Microsoft.NET\Framework64\v2.0.50727\' directory
The Glorious Monster: Fixing BizTalk ENTSSO Failure on Windows Vista
My final prompt looked like this:
C:\Windows\Microsoft.NET\Framework64\v2.0.50727>regasm "C:\Program Files\Common
Files\Enterprise Single Sign-On\SSOSQL.dll"
Once again, massive thanks to The Glorious Monster for saving my ass today!
Friday, 5 March 2010
Thursday, 4 March 2010
Can't deploy a WCF Service App from Visual Studio into IIS 7
One of the problems i encountered when trying to deploy a WCF Service App was this little doozie:
'Cannot add duplicate collection entry of type 'add' with unique key attribute 'name' set to 'ScriptHandlerFactory''
I got around it by adding the following line into the <handlers> tag of the tag in my web.config file and redeploying:
< remove name="ScriptHandlerFactory"/>
< remove name="ScriptHandlerFactoryAppServices"/>
< remove name="ScriptResource"/>
Also, this line at the BEGINNING of the <modules> tag :
< remove name="ScriptModule"/>
That seemed to fix it for me!
'Cannot add duplicate collection entry of type 'add' with unique key attribute 'name' set to 'ScriptHandlerFactory''
I got around it by adding the following line into the <handlers> tag of the
< remove name="ScriptHandlerFactory"/>
< remove name="ScriptHandlerFactoryAppServices"/>
< remove name="ScriptResource"/>
Also, this line at the BEGINNING of the <modules> tag :
< remove name="ScriptModule"/>
That seemed to fix it for me!
Wednesday, 3 March 2010
Dude, where are my WCF Data Classes?
I encountered an annoying quirk about the current implementation of WCF today - I created a class which had a data contract, saved, built and published my project and updated the service reference in my client to make sure it had all been deployed properly. On viewing the contents of the service in the object browser, my newly created class was not there! Why?!? The reason is that The data contract is deemed worth publishing unless something is using the thing. So, to get around the problem, i created a function that called used the data class, rebuilt/published and hey presto! it appeared in my list of available classes.
Wednesday, 18 November 2009
Orchestrations not appearing available after deploying application to Biztalk 2009
This is an annoying quirk I found when having multiple Biztalk applications running on the one server. I created a little app, built it and tried deploying it via the Biztalk WCF Service deployment wizard - when prompted for the application to deploy to, i specified the biztalk app container i had created in the BizTalk Server Administration console earlier and finished the wizard. The wizard completed sucessfully but i found myself puzzled as to why, when i went into the console and clicked on Orchestrations, my Orchestrations didn't appear, huh? The wizard hadn't thrown any errors?
In addition to specifying the App container to use in the WCF Service Publish wizard, you also need to specify the Biztalk Application Container in the properties of the biztalk project at the Visual Studio end - right click on the project in the Solution Explorer and choose the 'Deployment' tab in the page that is displayed:

Make sure the Application name matches the same name of your Biztalk Application and try redeploying via the wizard and your orchestrations should now appear as expected.
A simple BizTalk 2009 Project
So, you've managed to convince BizTalk 2009 to install on your computer, what now? If, like me, you found yourself feeling cold and alone in the world of Microsoft's BPM server, I suggest you try following the instructions here to create a simple BizTalk Client-Server Application:
http://blogs.msdn.com/rgarg/archive/2007/11/19/exposing-biztalk-orchestration-as-wcf-service.aspx
If i had time, I would put together a similar guide with screenshots but, for the moment, this will take you a long way to getting you first BizTalk project working. Good luck!
http://blogs.msdn.com/rgarg/archive/2007/11/19/exposing-biztalk-orchestration-as-wcf-service.aspx
If i had time, I would put together a similar guide with screenshots but, for the moment, this will take you a long way to getting you first BizTalk project working. Good luck!
Subscribe to:
Posts (Atom)