I am getting characters like this while executing the web service from soap-ui:
凯&#40857
How can I decode them ?
The exact value should be in Chinese language
and value will be 凯龙 in place of these encoded character.
I am getting characters like this while executing the web service from soap-ui:
凯&#40857
How can I decode them ?
The exact value should be in Chinese language
and value will be 凯龙 in place of these encoded character.
This is actually normal. Good parser suppose to understand it. For example if you open this xml in a browser you will see as shown below.
Some security libraries like ESAPI from owasp to strict about escaping rules and do that coding. Meanwhile w3.org don't recommend to use it since you can't read such message in simple text editor and some other cases.
Some information in here
Simple way to unescape is to use apache commons library
class StringEscapeUtil