<foo> bar &baz </foo>
I get (as expected)
<foo> bar &baz </foo>
You get this from what? If you're getting SAX data and you're feeding it into an XSLT transform, you should be doing that through TrAX and SAXSource, in which case it should all just work. If you're reserializing everything first, then your serializer is broken. You do have a problem but it is not at all what you think it is.
Hmm. Never heard of that before. But your'e right, instead of recreating a valid xml document as String, I could try to pass through my SAX events. It will introduce some quirks in my current application, but at least I'm standard conform then :)
I'll look into that, thank you.
Diez
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
