Home Page › Forums › BizTalk 2004 – BizTalk 2010 › how to read constructed message as string in expression shape › Re: how to read constructed message as string in expression shape
October 14, 2012 at 11:23 PM
#25882
First off, you want to use caution loading the message into a string. Just make sure it isn’t “too big”.
The easiest way I can think of is setting the message to an XML Document message. Then, so mySting = xDoc.OuterXML.
That will give you a message as a String.
Hope this helps.