> [Fatal Error] test.xml:8:69: The reference to entity "x" must end with > the ';' delimiter.
>From this I would read that on line 8 at character 69 of file test.xml you have &x What you probably want is the is the character reference you have been talking about: & # x 0 0 E A ; (ecircumflex) or possibly an entity ref (that is declared in your dtd) &x00EA; which is unlikely... > I would appreciate your help again :-) ... np. cheers andrew > -----Original Message----- > From: Michael Delamere [mailto:[EMAIL PROTECTED] > Sent: 27 November 2002 14:43 > To: [EMAIL PROTECTED] > Subject: RE: The entity "x00FC" was referenced, but not declared. > > > Hi, > > Thanks to all for helping! I have just replaced my " n & x 0 > 0 E 4 ; " > with your " & # x 0 0 E A ; ". > > I really do not want to waste your time but now I am getting > the error: > > [Fatal Error] test.xml:8:69: The reference to entity "x" must end with > the ';' delimiter. > > I have got an xml book here but there is absolutely no > mention of what I > could be doing wrong! > > I would appreciate your help again :-) ... > > Thanks, > > Michael > > > > > > -----Original Message----- > > From: Santiago Pericas-Geertsen > [mailto:[EMAIL PROTECTED] > > Sent: Mittwoch, 27. November 2002 15:24 > > To: Michael Delamere; [EMAIL PROTECTED] > > Subject: Re: The entity "x00FC" was referenced, but not declared. > > > > > > > > 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 > > > > > >
