Peter Donald <[EMAIL PROTECTED]> wrote:

> Somewhere in your input file you have the copyright character '�'
> (ascii code 0xa9). This is not a valid character in most default xml
> encodings. You will need to replace it with &#169; or similar.

Or tell the XML parser which encoding you are using.  As my comments
and description elements contain german umlauts quite frequently, I
have all my build files start with

<?xml version="1.0" encoding="ISO-8859-1" ?>

If you don't give an encoding here, the XML parser will assume UTF-8.

You knew that ;-).  I just want to give an alternative to the entity
stuff.

Stefan

Reply via email to