>
> I think the problem may be that I put the text in CDATA blocks....
>
> As soon as I remove them I get the error:
>
> Caused by: org.xml.sax.SAXParseException: The entity "x00FC" was
> referenced, but not declared.
>
> If "&x00E4" is standard why is SAX complaining?  Do I have to specifiy
> something or can I tell SAX to ignore them?

 The (numeric) character reference is not syntactically correct. It should
be "&x#00EA"; without the "#" the parser is looking for an entity whose name
is "x00E4".

 Hope this helps.

-- Santiago


Reply via email to