1
vote
How to Call BizTalk Orchestration Dynamically
The way I've accomplished something similar in the past is by using direct binding ports in the orchestrations and letting the MsgBox do the dirty work for me. Basically, it goes something like thi …
1
vote
How to figure out the current Biztalk Host Process
As far as I know, there isn't any "simple" way of doing it. One (somewhat backwards) way of getting that info would be to use the ExplorerOM API to query the management configuration data and figur …
1
vote
How can I still use DDD, TDD in BizTalk?
If you often make use of pipelines and custom pipeline components in BizTalk, you might find my own PipelineTesting library useful. It allows you to use NUnit (or whatever other testing framework y …
1
vote
What is the best way to create a new message within a Biztalk Orchestration?
What exactly are you looking for? Is it just creating a new message with a fixed content (like a sort of template)? Or based on something else? You really need to clarify the question and be more s …
2
votes
Biztalk 2006, same assemblies with different behaviour in different biztalk applications
What exactly are you trying to accomplish? That is, what kind of behavior differences are you trying to introduce?
The truth of the matter, is that there is no fool-proof way of finding out …
1
vote
WCF System.ServiceModel.Channel.Message: binary message contents (non-XML)?
Fundamentally, WCF messages are XML, since the S.S.C.Message class uses the Xml InfoSet as the base message representation.
So yes, in some way you need to "wrap" your binary conte …
1
vote
User permissions for BizTalk server
I second Rodrigo's recommendation of looking at the installation guide. However, I'll also add that in most live environments you'll want to do a good security planning before installing, as a secu …
2
votes
BizTalk generated XSD fails to validate the XML its derived from
The XSD generator is reasonably dumb, and didn't notice that the sample instance document contained type annotations (xsi:type attributes). So it decided that <ErrorDescription> should contai …
8
votes
How to set up a multi-developer Biztalk environment?
You will always want to have each developer have a complete BizTalk installation on their own machines. Believe me, it doesn't work otherwise, as you'll just keep getting on each other whi …
0
votes
BizTalk : Removing “spam” messages on receive location using File adaptor
To be honest, you've pretty much already came up with the simplest solution :) There's nothing on BizTalk that would really help you avoid this issue, so any other options would involve adding cust …
1
vote
Adding custom “views” to BizTalk administration console
It is possible, though how easy depends on what you want to do. The BizTalk admin console (at least up to R2, not sure bout 2009) was based on MMC 2.0, so you need to use the MMC SDK and do a bunch …
2
votes
BizTalk HTTPReceive request response with BTSHTTPReceive.dll?ReqResp
It depends on whether you're sending a GET or a POST request. In general terms (and particularly for POST requests), the querystring can be used to host multiple receive locations through a single …
1
vote
BizTalk scope “Catch Exception” General Exception message
Think of catching a "Generic Exception" as the equivalent of doing a "catch { }" block in C# with no exception declared. So, yes, there's no way to get the exception message at that point because t …
1
vote
BizTalk - Where does the deployment details stored
It basically exports its "c:\documents and settings[user]\Application Data\Microsoft\Deployment\BindingFiles" or somewhere around there.
…
1
vote
BizTalk - The app is neither deleting nor letting me to deploy
Have you checked that you don't have any suspended instances associated with any of the orchestrations, ports and schemas the app had?
…
