ObjectSharp Blogs

You are currently viewing

Matt Meleski's .Net Blog - The ABC's of .NET

ASP.NET/ADO.NET/Biztalk 2004/C#


April 2007 - Posts

SqlBulkInsert Adapter for VS2003 and BizTalk 2004

A few people have asked for the BizTalk 2004 version of this BizTalk SqlBulkInsert 2006 Adapter Follow the below instructions to install on BizTalk 2004: 1) Download the zip file at the end of this blog entry. 2) When unzipping, unzip it a different folder Read More...

BizTalk Message Helper Methods

This entry describes two helper methods to interact with messages in a BizTalk orchestration. The first helper methods will return the string representation of a BizTalk message. The methods are as below: /// <summary> /// Pass in a BizTalk Message Read More...

Turning an Immutable Message in BizTalk into a Mutable message

One thing that you learn pretty fast in BizTalk is that messages in an orchestration are immutable/read only. If you need to modify a message in a BizTalk orchestration, you are pretty well restricted to using a Construct shape with encapsulated Transform Read More...