I need to build XML-Output which contains CDATA-sections. E.g.:
<response>
<data>
<![CDATA[
some strange text < < <
]]>
</data>
</response>
My problem is that i dont know how to tell the marshaller to stop escaping certain characters.
So far the output i am able to produce looks like this:
<response>
<data>
<![CDATA[
some strange text < < <
]]>
</data>
</response>
Can you help me with hints or tips how to solve this problem?
regards
walter