Home Page › Forums › BizTalk 2004 – BizTalk 2010 › A question about message of dataset type › A question about message of dataset type
March 8, 2006 at 6:12 PM
#13087
In this case you can use an XmlDocument variable in your orchestration
and load the string into the XmlDocument and assign the XmlDocument to a message.
xmlDocVar.LoadXml(WebRequestResponse.ReturnString);
newMessage = xmlDocVar;