message

Viewing 1 reply thread
  • Author
    Posts
    • #13777

      can we store Biztalk message in string? in orchestration

      if yes how

    • #13778

      Create variable of type System.Xml.XmlDocument,
      and another variable of type String.

      Then in an expression shape:

      varXmlDoc = msgIncoming;
      varString = varXmlDoc.OuterXml;

      This works with normal \”schema\” messages. If you have a web service multipart message the message itself is not an XML Document, but often one of its \”sub-messages\” is.

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.