views:

152

answers:

1

Hi all,

I am getting this parser error while accessing the server url

Parser Error : Error Domain=NSXMLParserErrorDomain Code=5 "Operation could not be completed. (NSXMLParserErrorDomain error 5.)"

What does this mean ?

Thanks

+2  A: 

According to the documentation, this error means:

NSXMLParserPrematureDocumentEndError

The document ended unexpectedly.

Available in Mac OS X v10.3 and later.

Declared in NSXMLParser.h.
Konamiman