Home Page › Forums › BizTalk 2004 – BizTalk 2010 › soap attachment › Re: soap attachment
January 21, 2010 at 6:43 AM
#24105
You will need to add your second Xml file as a Base64 string to the Message field of your message. This will require a C# helper class and making the message element a distinguished field
Message.message = ConvertXmlToBase64(XMlDocument secondXml);
Then use MTOM encoding on the Binding tab of the WCF Transport Properties.
You will need to confirm with the web service publisher that MTOM is the correct attchment mechanism.