there is a java tool that uses several xsl transforms to convert data out of crx into esi xml markup.
often esi markup is non valid xml because esi is often small snippets of logic that do not always have the same opening and closing tags. ex:
<esi:assign>
bunch of esi logic
<esi:vars>$(myVar)</esi:vars>
the java xsl engine currently does not allow xml to be generated if it is invalid. Because of this we have to wrap all esi output in dummy tags but this causes several problems.
So I am wondering if there is a way to allow java xsl transform engine to generate invalid or not well formed markup?
Thanks.