tags:

views:

115

answers:

4

Hi guys,

i have been looking for stable RSS/Atom library for .net?

Preferably open Source like As3 syndication library created by Adobe?

Are there any other option?

I want to integrate RSS feed in my .net based site .

Also are there any javascript libraries for the same RSS feed reader?

thx amit

+2  A: 

Maybe the System.ServiceModel.Syndication Namespace can be of help?

Svish
A: 

Look at www.rssdotnet.com

thomas nn
is it open source??i dont think it is maintained anymore?
Amitd
+2  A: 

I answered a similar question some time back : net has a class to parse ATOM and RSS feeds. Check out the links.

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

http://msdn.microsoft.com/en-us/magazine/cc135976.aspx

Alternatively You can just remove the "Feed version" from the XML file and parse it as a normal XML file using xmlDocument class.

http://stackoverflow.com/questions/684507/rss-parser-in-net/684518#684518

Shoban
Is parsing the feed client slide better than on server side?same thing can be done using javascript?Also found this http://www.codeplex.com/ASPNETRSSToolkit
Amitd
The syndication readers may be stable but the are not very robust, one little bit of wrong formatting and the entire feed fails to read.
Henk Holterman
+1  A: 

This seems a no-brainer.

Argotic (http://exist.sourceforge.net/atompub.html) is a mature, stable, open source .Net library for RSS and Atom. I've worked within the sources, and they're very feature complete and sensibly implemented (including support for Atom extensions such as GeoCoding, Dublin Core, iTunes and trackback).

ianmayo