Hello,
I receive SOAP messages over the Axis Client which contained again XML data
as
parameter with umlauts and special characters (UTF8 encoded):
...
...
<ns4:callResponse>
<result xsi:type="xsd:string">
<?xml version="1.0" encoding="UTF-8"?>
<xyz>
ö� (B -b?�? �? <>
</xyz>
</result>
</ns4:callResponse>
...
...
Axis converts the result to:
<?xml version="1.0" encoding="UTF-8"?>
<xyz>
��� � <>
</xyz>
Now I'd like to parse the result but a SAXParseException is thrown, because
<> is not a valid Markup.
Can someone support me in this case ?
Regards,
Thomas