Hi,

I commented out the first three lines of the decodeValue() method in
JessSaxHandler.java and things work much better:

    private static Value decodeValue(String text, int valueType) throws
JessException {
//        text = text.replaceAll(">", ">");
//        text = text.replaceAll("&lt;", "<");
//        text = text.replaceAll("&amp;", "&");

These lines seem unnecessary. In fact they unescape the escaped XML,
making the embedded XML become part of the containing XML, transforming
it into something else.

Do you think this correction breaks anything else.

Son Nguyen

Reply via email to