I'm working on a project that involves C# and Java webservices. When I get the response back from the C# service in java, the result has all the <, and >, replaced with & lt; and & gt;.
In XML, < and > are '<' and '>' respectively (lt = less than, gt = greater than).
Apparently, your Java app is reading the XML stream literally (E.G. without converting the character references). Why is this happening and how do you prevent it? That question may be better suited for the Java forum.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.