E.g. the WCF Service creates an XDocument with an element like this:
string content = <Wibble>";
XDocument message = new XDocument( new XELement("ElName", content) );
Our clients are stating that they get the above back as:
<ElName><Wibble></ElName>
We've not found any decode code in our WCF service or their client code. I think we're missing something, though could it be that WCF or XDocument is turning <Wibble>
into <Wibble>
? Note that we're using Net TCP binary encoding.
Thanks