Re: [xml-dev] If XML is too hard for a programmer, perhaps he'd b e better off as a crossing guard

From
Karl Waclawek <>
To
"Simon St.Laurent" <>,
Date
2003-03-31T21:44:07Z
ID
<002e01c2f7ce$ab3d2530$9e539696@citkwaclaww2k>
Thread
Re: [xml-dev] If XML is too hard for a programmer, perhaps he'd b e better off as a crossing guard
> No, I'm saying that it doesn't provide any way for me to say "please
> don't process the contents of this CDATA section as text; please process
> it as if the CDATA section wasn't there."
>
<snip/>
> 
> I'm not interested in suppressing the event, but rather on suppressing
> its effect on the parser.

OK, I understand. No, that is not easily possible.

You could try this (not tested):
Clear the characterDataHandler in the startCDATASectionHandler,
then set a defaultHandler, getting the raw (but encoded) data + do your
own processing on them, and finally re-set everything in the
endCDATASectionHandler. That is problematic especially when you
have entity references, although it is possible to have them expanded.

Karl