Hello, I'm using Digester (1.8) and trying to process XML that may include HTML entities (and get Digester to decode them).
For example: <name><![CDATA[Grüber]]></name> Currently, Digester is giving me this: Grüber If I don't use CDATA, like this: <name>Grüber</name> Digester gives me: Grber But what I am really after is to get this ü entity decoded by Digester, so I can get: GrĂ¼ber (u with an umlaut) How do I tell Digester to decode HTML entities? Thanks, Otis --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
