> I have an Access DB, containing car and engine specifications entered
> by hand by jobbers. I use an XML file to parse the information in the
[quoted text clipped - 9 lines]
> UTF-8, the document loader throws and exception. How can I get these
> characters in my XML ?
I don't understand, XML is based on and fully supports Unicode so why do
you want to use ASCII?
If you have e.g.
<foo>¼</foo>
then that is well-formed XML
Just make sure the XML file is properly UTF-8 encoded, you can achieve
that using XmlWriter.

Signature
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Harel - 21 Mar 2008 14:21 GMT
> don't understand, XML is based on and fully supports Unicode so why do
> you want to use ASCII?
Right. I changed the XML document encoding type with Crimsom editor to
UTF-8.
Works now.
Thanks.