views:

158

answers:

1

The SyndicationFeed Class in .NET only seems to support RSS version 2.0. How do I go about supporting RSS version 0.91?

+1  A: 

In short, you need to create a class that handles the serialization and deserialization of the RSS 0.91 standard. Such a class should derive from the SyndicationFeedFormatter class.

I've created such a class and provide its source code and a description of how to use it here: Syndicating and Consuming RSS 1.0 (RDF) Feeds in ASP.NET 3.5.

Happy programming!

Scott Mitchell
Scott, thanks for your solution. It's working for me for RSS 1.0, but when I try to consume RSS 0.91 from http://www.bitwisemag.com/2/backend.php I get the error: "Unknown RSS 1.0 feed format."
John Kaster