Re: Extending the XML Serializer [solved]

2005-11-15 Thread Geert Josten
Found the answer on http://java.sun.com/j2se/1.4.2/docs/api/javax/xml/transform/sax/package-summary.html: Use super.processingInstruction(Result.PI_DISABLE_OUTPUT_ESCAPING, ""); and super.processingInstruction(Result.PI_ENABLE_OUTPUT_ESCAPING, ""); :-) Geert Geert Josten wrote

Extending the XML Serializer

2005-11-14 Thread Geert Josten
Hi, I have extended the XML Serializer to make it write named entities. But they come out like "&ent;". Is there a way to disable the 'output escaping'? Or is there another convenient way of making this work? Regards, Geert