how to read constructed message as string in expression shape Home Page › Forums › BizTalk 2004 – BizTalk 2010 › how to read constructed message as string in expression shape This topic has 1 reply, 1 voice, and was last updated 9 years, 2 months ago by community-content. Viewing 1 reply thread Author Posts October 14, 2012 at 6:02 AM #25881 community-content Hi All, I’m new to biztalk, started learning and practicing few concepts. I need to read constructed message as string in expression shapes. In expression shapes, I’ve called .net method to insert xml data to sql database. is that possible ? else, please guide me on above issue.. here the code added in expression shape. Insertinfodll.insertdata(OutMSG); OUTMSG // is constucted message. Thanks and Regards, Karthick October 14, 2012 at 11:23 PM #25882 community-content 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. Author Posts Viewing 1 reply thread The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies. Log in / Register