vote up 0 vote down star

Hi all,

We are using NSXMLParser in Objective-C to parse our XML document, which are all UTF-8 encoded. One document has a string "Nestlé" in it (as in ...<title>Nestlé Novelties</title>...). The parser just quit, reporting an error with error code=9, due to the French letter "e" at the end of the word "Nestle". Furthermore, we tried using IE, Chrome, Safari to show the same document directly. They reported a similar encoding error.

We are using UTF-8 for all incoming XML document, which means that all of them have "<?xml version="1.0" encoding="UTF-8" ?>" as the top of the document.

Is this an encoding problem? If so, how do we solve this? What encoding should we use for all of our XML documents? Thanks in advance!

Barclay

flag
really mysterious! Can you please whittle the doc down to the smallest that will give an issue, and edit your question to show it (with proper formatting -- highlight the XML code and click the icon that looks like zeros and ones). – Alex Martelli May 31 at 19:30
It must be the name of an international industrial congolomerate causing this disorder – krosenvold May 31 at 19:41
1  
Replace with "The maker of Nesquik." – Nosredna May 31 at 20:04
2  
Simply saying in the prolog that the document is UTF-8 doesn't make it true. It sounds to me like it's really a single-byte encoding like ISO-8859-1. – Alan Moore Jun 1 at 3:16

3 Answers

vote up 4 vote down

Have you checked the file with a hex editor to verify that the "é" is indeed UTF-8, 0xC3 0xA9 ?

link|flag
vote up 0 vote down

In HTML, I would use Nestl&eacute; Does that work for your application?

link|flag
1  
Wouldn't work in XML -- only HTML (and XHTML) contain the '&eacute;' entity. – Jim Dovey Jun 1 at 0:04
vote up -1 vote down

Something I saw just now in an example XML file was that a string containing user-defined input (which happened to include é characters) wrapped the contents of the containing tag in CDATA declarations. This has the effect of making the parser completely ignore the characters contained therein.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.