CDATA section
I am using IXSLPROCESSOR to transform my XML file.
But the problem now is that even though I have the CDATA tags wrapped around some elements e.g.:
<TEXT><![CDATA[<b> is malformed!</b>]]></TEXT>
The processor still transforms it to
<TEXT><![CDATA[<b>this is malformed!</b>]]></TEXT>
Can I resolve this or can I only add CDATA sections AFTER transformations?
|