ios XML parsing : Error Domain=NSXMLParserErrorDomain Code=76 on some devices

10.5k Views Asked by At

I get this error in my app on one specific iPhone 4 device while parsing an XML Feed:

error parsing XML: Error Domain=NSXMLParserErrorDomain Code=76

I am not able to determine why it's happening on this particular device and not others: this is the same feed. There are no XML errors in the feed XML structure and all devices have the same global general settings.

According to the docs, Error 76 is NSXMLParserTagNameMismatchError.

3

There are 3 best solutions below

0
On

this error happens when the closing tag doesn't match the opening tag, like so:

<hello>
    <hi />
    <hi />
    <hi />
</goodbye>

or

<hello />
    <hi />
    <hi />
    <hi />
</hello>

(the tag was closed on the first line)

1
On

Cut and paste your xml here to validate. The error messages are pretty solid.

2
On

Your xml may be inconsistent. Validate it against http://validator.w3.org/#validate_by_input