Hi Morten,

>   The trax.Transformer implementation has also been updated to use the
>   LexicalHandler, but I still have not found any way in which a SAX client
>   can set the LexicalHandler.

Do you mean how to set a LexicalHandler
for a TransformerHandler? I believe this
is the way, if I'm not misunderstanding
your problem:

        SAXResult res = new SAXResult(contHandler);
        res.setLexicalHandler(lexHandler);
        transformerHandler.setResult(res);

Cheers,

        - Gulli

Reply via email to