Hi I need to send plain XML via a ClientBase wcf client in an anomymous field. I used standard .Net Classes, but whatever I have tried, the output of the xml is ecaped
<Body xsi:type="xsd:string"><GetPODsList><GetPODList_In><LanguageCode>nl</LanguageCode><WebUser>80AA0BF6-E773-4BD7-B2A1-2F0849848520</WebUser><DirectionID ...
But the target systems only understands plain xml.
<Body xsi:type="xsd:string"><GetPODsList><GetPODList_In>&<LanguageCode>en</LanguageCode><WebUser>80AA0BF6-E774-4BD7-B2A1-2F0849848520</WebUser><DirectionID ...
Is there a way so the ClientBase will serialize in plain xml. Via an xml attribute or custom XmlSerializer?
Thx