vote up 4 vote down star
2

I have been wanting to make a RSS reader for a while now (just for fun), but I don't have the slightest idea of where to start. I don't understand anything about RSS. Are there any good tutorials on RSS and how to implement it in an application (not a tutorial on how to make a RSS reader, that would be too easy). Thanks!

flag

7 Answers

vote up 9 vote down check

See

http://msdn.microsoft.com/en-us/library/bb943474.aspx

http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx

http://msdn.microsoft.com/en-us/library/bb943480.aspx

Basically there is a lot of stuff in the .Net 3.5 framework that does the grunt-work of parsing and representing feeds; it's not hard to write a 30-line app that takes in a feed URL and downloads the feed and prints the title and author of all the items, for example. (Works for RSS or Atom.)

link|flag
See e.g. the top of lorgonblog.spaces.live.com/blog/… for a 10-line snippet (F#, but mostly just calling framework APIs) that will get you from Uri to printing the feed in about 30 seconds of coding. – Brian Feb 23 at 1:36
vote up 2 vote down

As another poster recommended, the SyndicationFeed class and Argotic are the best alternatives.

If performance is an issue, the SyndicationFeed class will be much better. I benchmarked it as being about 9 times faster than Argotic on my hardware.

The problem I've had with the SyndicationFeed class has been its ability to successfully parse any random feed from the 'net. It fails with an XmlException surprisingly often.

For my uses, I'm sticking with Argotic. After all, it is open source, so I can always make changes if I need to.

link|flag
vote up 1 vote down

If you are focusing on creating an RSS Reader and not on RSS parsing logic, you might want to delegate creation/reading RSS feeds using this free RSS Library called Argotic on CodePlex.com

link|flag
vote up 0 vote down

You need to work with the RSS XML specification: http://cyber.law.harvard.edu/rss/rss.html

link|flag
vote up 0 vote down

If you write a full featured reader without using any library, also think that there are ATOM feeds to parse.

link|flag
vote up 0 vote down

RSS itself is really simple. Just an XML description of a channel, and a list of items on that channel (possibly with files attached to each item). Keeping track of updates is a little tricky, and managing encodings and post times/dates is tricky too though. The real nightmare is all the different "interpretations" of the RSS format that different sites use. If you're really writing a feed reader, you might want to start with parsing Atom, as it's a more standardised format, and might get you further faster, with a good design to branch off into RSS from. But really, you should just use an RSS parsing library -- preferably the most compatible one available (but don't pay for an RSS library; they're common enough).

link|flag
vote up 0 vote down

RSS is an XML dialect, so if you know XML, you have part of the problem solved. If you want a start on your project, consider looking at the open source projects already out there:

http://www.codeplex.com/site/search?projectSearchText=RSS%20Reader

CodePlex (above) is a good place to start, as the majority of the projects will be in C#.

link|flag

Your Answer

Get an OpenID
or

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