RE: [xml-dev] Error: "Invalid byte 1 of 1-byte UTF-8 sequence" ?

From
Michael Kay <>
To
'Ben Stover' <>,
Date
2007-12-27T18:43:56
ID
<008401c848b8$6fae10c0$6401a8c0@turtle>
Thread
RE: [xml-dev] Error: "Invalid byte 1 of 1-byte UTF-8 sequence" ?
> Unfortunately I am getting an execption:
> 
> "Invalid byte 1 of 1-byte UTF-8 sequence" 
> 
> What's wrong?

What's wrong is that the document is claiming to be encoded in UTF-8 (either
by saying encoding="utf8" in the XML declaration, or by saying nothing), and
it is lying - it is actually in some other encoding, perhaps iso8859-1 or
cp1252.

If the document was hand-edited, and if you're located in North America or
Western Europe, then there's a very good chance that the encoding is
iso8859-1, so change the XML declaration to say so. Alternatively, look for
non-ASCII characters, and replace them by numeric character references.

Michael Kay
http://www.saxonica.com/