Accessing RSS Feeds
I need to get data from this RSS feed:http://feeds.feedburner.com/WikinewsLatestNews
to create a desktop ticker. Any suggestions on where to start accessing the feed?
I need to get data from this RSS feed:http://feeds.feedburner.com/WikinewsLatestNews
to create a desktop ticker. Any suggestions on where to start accessing the feed?
I would start by looking at the RSS 2.0 specification here: http://blogs.law.harvard.edu/tech/rss . It describes the RSS format.
You can access a stream that contains the RSS file using the following code:
WebRequest.Create("http://feeds.feedburner.com/WikinewsLatestNews").Response().GetResponseStream()
You can then pass this stream off to the XMLTextReader class and use it to read in and process the RSS file.
Hope this helps.
-Scott Wisniewski
There is this vb learning resource that was released as part of Whidbey (I think). It walks you through how to build an RSS Feed Reader (using videos and projects). This may be of help -
You can download the framework at http://www.codeplex.com/argotic.