vote up 1 vote down star

Hey... Does anyone know an easy way to import a raw, XML RSS feed into C#? Am looking for an easy way to get the XML as a string so I can parse it with a Regex.

Thanks, -Greg

flag

8 Answers

vote up 7 vote down

This should be enough to get you going...

using System.Net 

WebClient wc = new WebClient();

Stream st = wc.OpenRead(“http://example.com/feed.rss”);

using (StreamReader sr = new StreamReader(st)) {
   string rss = sr.ReadToEnd();
}
link|flag
1  
Or just call wc.DownloadString("feed url"); – Jonas Follesø Sep 15 '08 at 23:46
Even shorter! Excellent. – Darrel Miller Sep 15 '08 at 23:58
vote up 5 vote down

If you're on .NET 3.5 you now got built-in support for syndication feeds (RSS and ATOM). Check out this MSDN Magazine Article for a good introduction.

If you really want to parse the string using regex (and parsing XML is not what regex was intended for), the easiest way to get the content is to use the WebClient class.It got a download string which is straight forward to use. Just give it the URL of your feed. Check this link for an example of how to use it.

link|flag
Interseting article. I need to start looking into WCF and the Syndication API. – Alan Le Sep 15 '08 at 23:53
vote up 2 vote down

What are you trying to accomplish?

I found the System.ServiceModel.Syndication classes very helpful when working with feeds.

link|flag
vote up 1 vote down

I would load the feed into an XmlDocument and use XPATH instead of regex, like so:

XmlDocument doc = new XmlDocument();

HttpWebRequest request = WebRequest.Create(feedUrl) as HttpWebRequest;

using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
    StreamReader reader = new StreamReader(response.GetResponseStream());
    doc.Load(reader);

    <parse with XPATH>
}
link|flag
vote up 0 vote down

You might want to have a look at this: http://www.codeproject.com/KB/cs/rssframework.aspx

link|flag
vote up 0 vote down

XmlDocument (located in System.Xml, you will need to add a reference to the dll if it isn't added for you) is what you would use for getting the xml into C#. At that point, just call the InnerXml property which gives the inner Xml in string format then parse with the Regex.

link|flag
vote up 0 vote down

The best way to grab an RSS feed as the requested string would be to use the System.Net.HttpWebRequest class. Once you've set up the HttpWebRequest's parameters (URL, etc.), call the HttpWebRequest.GetResponse() method. From there, you can get a Stream with WebResponse.GetResponseStream(). Then, you can wrap that stream in a System.IO.StreamReader, and call the StreamReader.ReadToEnd(). Voila.

link|flag
vote up 0 vote down

The RSS is just xml and can be streamed to disk easily. Go with Darrel's example - it's all you'll need.

link|flag

Your Answer

Get an OpenID
or

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