Home Page › Forums › BizTalk 2004 – BizTalk 2010 › BizTalk 2006 R2 WCF-basicHttp adapter configuration – Getting message in service – with null value › Re: BizTalk 2006 R2 WCF-basicHttp adapter configuration – Getting message in service – with null value
I’m now accepting the entire message as the WCF method parameter and am manually serializing only the Body ( message.WriteBody(xmlWriter) ). WHen I examine the output XML file, I’ve got an extra XML node in the content that is preventing me from deserializing again:
<s:Body xmlns:s=”http://schemas.xmlsoap.org/soap/envelope/”>
<My XML content…>
</s:Body>
If I manually strip that section out of the XML file, it deserializes just fine. I strongly suspect the deserialization the WCF service handles automatically is having very same issue.
Zx7R,
Are you getting the same results as I am with your application?