My guess is the source document is encoded in ISO-8859-1, but does not have an XML declaration so it is interpreted as UTF-8. Add a:
<?xml encoding="ISO-8859-1"?> XML documents are not affected by the locale of the processor, they contain their encoding information so that a document written in France doesn't magically get converted to Japanese, Thai or whatever the code page used by the reader. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
