Mark Barto's Blog
Technical Blog about the Microsoft .NET Platform and everything that surrounds it such as .Net, C#, BizTalk, WCF, ASP.NET, SQL, Silverlight, IIS ...BizTalk: Missing context property ReceiveLocationName within orchestration
We have noticed that when you are transforming a message within an orchestration that the context properties of the original message will not be copied to the transformed message. You must declare this specific within your expression shape of your orchestration.
Because we are using ESB for exception handling we want to know the location where the message is coming from.
Unfortunately the ReceiveLocationName is missing in the standard BTS namespace.
C#, .NET: Current Directory for Windows Service
When calling for the current directory in a Windows Service with the Path.GetCurrentDirectory() you will probably not getting the correct directory but the C:\Windows\System32 directory.
Read More ...