Welcome to BizTalk Development Sign in | Join | Help

Browse by Tags

All Tags » BizTalk Development   (RSS)
It has been awhile since I last blogged. I have been away working on a very interesting project for a financial services company. The project entailed building a service broker using BizTalk 2006 (not R2) with WCF to achieve better decoupling of service consumers and service providers. Read More...
When deploying a BizTalk 2006 solution from Visual Studios, you may have encountered errors similar to this one: Error 6 Failed to update binding information. Could not enlist orchestration 'DataStream.SOL.ScaterServiceRequests,DataStream.SOL.Demo, Version=1.0.0.0, Culture=neutral, PublicKeyToken=806c67aab899168c'. Could not enlist orchestration 'DataStream.SOL.ScaterServiceRequests'. All orchestration ports must be bound and the host must be set. Read More...
Your orchestration uses a 2 way RoleLink for delivery but a new trading partner will only accept orders via a one way port. What do you do? Read More...
The other day, in discussing the virtues of automated continuous integration with a client, I came across a few excuses for not adapting the process. The argument goes like this: “We don’t have enough hardware resource for a build server.” “I am the sole developer so I don’t need it.” Read More...
Here is a code snippet for writing information to the EventLog. This code will work in a BizTalk Expression Shape as well as in a .NET application. .. Read More...
Here is how you can create a messaging based solution that sends an HTTP POST acknowledgement without involving an orchestration... Read More...
If you are logging information to the EventLog and getting an access error, make sure you have the following registry setting... Read More...
Despite its flaws and bugs, Visual Source Safe continues to be the most popular source control program in the Microsoft realm. Many poeple I talk to are not aware some of its more useful functions such as "Pinning". Understanding the use of pinning can be very useful in a multi-developer environment... Read More...
When declaring complex types in XML schema definition, I have grown accustomed to suffix the type name with "_Type". This allows me to easily distinguish a complex type from a global type when viewing the definition in a graphical design tool such as XML Spy. However, it has unintended consequences when incorporating such schema into a web service... Read More...