Jesse,
I used a hexdump utility to examine the contents of your file. It's UTF-16 with a byte-order mark (BOM). The BOM enables a parser to determine the encoding and byte order without reference to the declared encoding. (With a 16-bit encoding, you have to know whether the high-order byte comes first or second. The BOM gives the parser a way to figure this out.)
encoding, so it gave up. Changing the encoding declaration to UTF-16 or omitting it altogether allows the document to parse.
Thanks a lot, that was the problem. Next time I ll improve my hexa reading ability ;)
Stephane
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]