vote up 2 vote down star

I am using the SIMPLE RSS reading example found at http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/

It uses parseXML to load the RSS feeds.

Here is the problem I am having. For the following RSS feed example, I am having trouble getting it to load the feed. Comes up with an error that it cannot connect. However on my Mac RSS Reader it works fine, so I know the link is good.

Any ideas on why it cannot load this particular feed but it can load others fine?

http://www.okstate.com/rss.dbml?db_oem_id=200&media=news

Thanks.

flag

4 Answers

vote up 1 vote down

I've been experiencing a similar issue. I haven't yet pinned down the answer, but I've noticed that RSS 2 tends to parse more successfully than the rest.

link|flag
vote up 1 vote down

In my experience, HTML markup causes an RSS parser to fail in most cases. I've experienced a problem like this with a lot of parser classes I've come across (in search of the ultimate one, which I didn't find)

My guess is that entities such as

's

are responsible for your crash. That was usually the case with my crashes. This also lead to my decision to create a 'proxy server' to pre-parse the XML before sending it to the iPhone (which gives me the advantage of caching, scaling, and some other stuff). I do believe there are solid solutions out there, but is always difficult writing a parser for so many RSS implementations.

P.S: W3C validates this feed as 'valid', so it really is 'our' problem..

link|flag
vote up 1 vote down

Your problem could lie with:

  1. Unicode characters (i.e. I see some o's with two dots above them in the feed)
  2. The code you have doesn't respect CDATA sections correctly

To find out which is the case, save the feed file to your local disk and load it via your code to make sure the error happens.

Do a binary search on the file to find out if a particular RSS entry is causing the problem (i.e. remove all but the first rss entry and see if the problem exists. If it does, then the problem is there, if it doesn't put half the rss entries back in the file and repeat)

link|flag
vote up 1 vote down

There are many RSS feeds that contain invalid XML, usually because they were hacked together on the server side using HTML templates by somebody who didn't understand XML. I've seen improperly escaped (or non-escaped) HTML post contents, missing close tags, badly nested tags, and so on.

If you want to be able to parse arbitrary feeds, you have to clean up bad XML. The usual way is to use the "htmlTidy" library, which is included in the OS. This can clean up XML as well as HTML.

This example you're following uses NSXMLParser -- I have no idea why. It's a lower-level API and it doesn't support tidying. I would suggest using NSXMLDocument instead. There's a flag in that API that will tell it to use tidy when parsing the XML. This API also returns you the XML as a handy tree of elements that's easy to work with.

link|flag
NSXMLDocument is not available on iPhone which is why I assume they are using it in this example. – Hunter Jun 20 at 23:13

Your Answer

Get an OpenID
or

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