Click here to Skip to main content
15,867,453 members
Articles / Programming Languages / XML

RSS Reader

Rate me:
Please Sign up or sign in to vote.
4.80/5 (50 votes)
17 Feb 20044 min read 398K   17.5K   161   35
An easy to use RSS feed reader

Sample Image - RssReader.gif

Introduction

There's already quite a comprehensive RSS tool on The Code Project: RSS 2.0 Framework written by "Jerry Maguire". The purpose of this, RssReader class, is to provide a simple tool for retrieving RSS feeds from remote and local sources, without needing to parse XML in each application you require the RSS feed in. The class, as its name suggests, only reads RSS feeds - it has no capabilities for writing feeds.

The RSS Format

The RSS (Really Simple Syndication) specification is found at http://blogs.law.harvard.edu/tech/rss. It's an XML format for retrieving, typically, headlines or the latest article details from other sites. For example, the New York Times provide an RSS feed of their main headlines, which you can access and put inside your own site or application.

The RSS format is true to its name - simple. As the image below shows, it contains a root RSS node, which has a channel node beneath it. Inside this channel node, there are a number of elements to describe the feed. Then, after these is a list of articles, headlines, stories or whatever they contain in the form of item nodes. Each item node contains elements to describe themselves - title, description and link are the 3 required elements, there are other optional ones which you can read about in the specification and the RssReader class docs.

Typical XML format of an RSS document

RssFeed and RssItem Objects

Given the simplicity of the RSS format, it was straightforward to map its structure to a value type (struct).The image below shows the RssFeed object.

RssFeed object

In this are most (some haven't been implemented in this version) of the fields that RSS offers. There is an Items property, which contains a collection of RssItem objects. The RssItem type maps to an RSS item, containing most of the fields available to an RssItem.

RssItem object

The RssReader class has one main method, RetrieveFeed which returns an RssFeed object, given a URL. This URL can be in the format of file:// as well as the standard http://, if you want to open a local file (it's not been tried with ftp://).

Static Methods

I added several static methods to make the process even simpler, they're all self explanatory. Also included in the class library is a class called RssHtmlMaker. This is a simple tool I wrote to turn a RssFeed object into an HTML (or any other format) document, given a template containing tokens. These tokensmap to the RSS fields available. Details of the tokens are in the documentation.

RDF

Included in the RssReader is the ability to read simple RDF format feeds. RDF (Resource Description Framework) is an W3C XML format for describing web resources. The format caters for describing the content of the web resource, including items such as title, description and URL. There were a couple of RDF feeds which I wanted to use, specifically the slashdot.org feed and the register.com feed. The main way these RDF documents differ
from their RSS counter-parts is the <items> nodes are children of the main root RSS (or in this case rdf) node, rather than the <channel> node.. This is catered for in the RssReader class via the member variable RdfMode, which is set to false by default. The RDF specification is found at http://www.w3.org/TR/2004/REC-rdf-primer-20040210/.

Final Note

One final thing to note: to save yourself at worst being ip-banned by the hosts of the feeds, and at best just upsetting the feed providers, I'd recommend caching the feeds once you get them, rather than retrieving the feed each time it's required. This can be done by serializing the RssFeed class, or creating an HTML version of the feed and saving it to disk.

Hopefully, the class is useful to people - I've not managed to find any C# RSS Feeds about, if there are any, then leave a URL below.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Web Developer
United Kingdom United Kingdom
London based C# programmer.

I maintain my own pet C# site http://www.sloppycode.net in my spare time.

Comments and Discussions

 
GeneralClass doesn't allow retrieving CDATA content for the &lt;description&gt; tag Pin
craigg7529-Sep-09 15:00
craigg7529-Sep-09 15:00 
QuestionLicense for commercial use ? Pin
michal.ziomek4-May-09 0:45
michal.ziomek4-May-09 0:45 
QuestionHow to read old feeds Pin
satalaj2-Mar-09 18:43
satalaj2-Mar-09 18:43 
QuestionLicense? Pin
Member 424890831-Jan-09 22:34
Member 424890831-Jan-09 22:34 
GeneralpubDate-Bug Pin
El Grazo8-Dec-08 23:38
El Grazo8-Dec-08 23:38 
GeneralRe: pubDate-Bug Pin
alcobnitech5-Nov-09 19:40
alcobnitech5-Nov-09 19:40 
GeneralRe: pubDate-Bug [modified] Pin
CptHook9-Nov-10 22:37
CptHook9-Nov-10 22:37 
Generalnice Pin
ali_reza_zareian10-Jul-08 22:09
ali_reza_zareian10-Jul-08 22:09 
GeneralHTML in the Description Pin
fodaley4-Jan-08 22:19
fodaley4-Jan-08 22:19 
GeneralRe: HTML in the Description Pin
fodaley4-Jan-08 23:09
fodaley4-Jan-08 23:09 
GeneralRe: HTML in the Description Pin
fodaley4-Jan-08 23:09
fodaley4-Jan-08 23:09 
GeneralSmall bug Pin
ehsoiueylkfjsegfoieuygfrlkeajrhg15-May-07 7:35
ehsoiueylkfjsegfoieuygfrlkeajrhg15-May-07 7:35 
QuestionWhat would I need to do if I wanted to display feeds from more than one source at the same time Pin
bijhere16-Feb-07 5:09
bijhere16-Feb-07 5:09 
Generalreading only new feeds Pin
nitstheone20-Nov-06 8:32
nitstheone20-Nov-06 8:32 
GeneralIssues with Special characters (á,é,í,ó,ú,ñ,etc) Pin
sesmac10-Nov-06 12:46
sesmac10-Nov-06 12:46 
GeneralRe: Issues with Special characters (á,é,í,ó,ú,ñ,etc) Pin
yetanotherchris15-Nov-06 6:11
yetanotherchris15-Nov-06 6:11 
GeneralThanks! Pin
jamesjin26-Aug-06 7:42
jamesjin26-Aug-06 7:42 
GeneralAdding Enclosure support (here's how) Pin
hejndorf2-Feb-06 22:33
hejndorf2-Feb-06 22:33 
GeneralProblem making work with .NET 2.0 Pin
begin_busa27-Sep-05 0:16
begin_busa27-Sep-05 0:16 
GeneralRe: Problem making work with .NET 2.0 Pin
smarkley23-Nov-05 9:49
smarkley23-Nov-05 9:49 
GeneralRe: Problem making work with .NET 2.0 Pin
Vasche28-Feb-06 5:28
Vasche28-Feb-06 5:28 
GeneralRe: Problem making work with .NET 2.0 Pin
Vasche28-Feb-06 6:12
Vasche28-Feb-06 6:12 
GeneralRe: Problem making work with .NET 2.0 Pin
JoanComasFdz6-Oct-06 2:15
JoanComasFdz6-Oct-06 2:15 
GeneralRe: Problem making work with .NET 2.0 Pin
yetanotherchris15-Nov-06 3:55
yetanotherchris15-Nov-06 3:55 
GeneralWhy didn't you add RDF auto detect Pin
wiseleyb2-Aug-05 0:53
wiseleyb2-Aug-05 0:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.