Hi,
I'm trying construct payload from a WebService and ION API connection point that MUST include some XML nodes wrapped in <!CDATA[ ... ]]>. Escaping < and > is unfortunately not possible as the end-point to be called will not accept escaped content. Is there any method of including some dynamic content in CDATA?
In my scenario, I wish to send a Custom BOD to either an ION API or WebService connection point. The content of the BOD will be used to populate the payload, including several elements inside CDATA.
In case of a webservice call, wrapping my content in <xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text> and <xsl:text disable-output-escaping="yes">]]></xsl:text> should generate <![CDATA[ ]]> but ends up being <!pCDATA[]]> which is rejected by the WebService.
For ION APIs connection point there is really no option to include CDATA.
Any hints/comments/suggestion?
Thanks,
Tomasz