Parsing XML goes wrong when characters like ? exists in textnodes.
XML example:
<?xml version="1.0" ?>
<example>?</example>
I think they need to be translated to escape characters. Is there any convenient way (method?) in the org.w3.dom / org.xml.* packages of doing this, or do have to write my own methods to achieve this?
Question 2, does anyone knows a list of these characters which need to be translated (or is this te same as on http://www.w3.org/TR/REC-html40/sgml/entities.html )