Hi I used a CDATA structure on the request message, but in the response Body it seems not works well ? What can i do ?
Hi @miansanc,
What’s wrong with the response body? Can you be more specific?
Regards.
Quoting from
if written like this:
<![CDATA[<sender>John Smith</sender>]]>
then the code is interpreted the same as if it had been written like this:
<sender>John Smith</sender>
These two are the same in XML semantics. Therefore it is just valid that the Response XML is rendered as a text containing a lot of < and > characters rather than using CDATA section.
