How can I disable escaping text when using
org.apache.xml.serialize.XMLSerialzier class in xerces. I could not find any
method 
in the serializer for doing this. 

My problem is, I have a simple XML like 

<?xml version="1.0" encoding="UTF-8"?>
<Root>
        <Old>
        <![CDATA[<Order></]]>
        <new/>
        </Old>
        <![CDATA[Order>]]>
</Root>

And the output I am getting is 

<?xml version="1.0" encoding="UTF-8"?>
<Root>
        <Old>  &lt;Order>&lt;/  <new/>
        </Old>  Order> 
</Root>

Regards,
--Suresh

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to