vote up 3 vote down star

How would you generate RSS using ASP.Net MVC? I have the data in the database already and I'll transform it as necessary. My first approach is to create an RSS template that I use as a view, but that seems error prone and since RSS is a structured format there could be a class that I set some properties and generates RSS. Is there such a thing? How would you do it?

flag

74% accept rate
possible duplicate of stackoverflow.com/questions/11915/… – Dennis Palmer Jun 22 at 23:10

3 Answers

vote up 4 vote down check

Here's an interesting article - http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/

It creates an RssActionResult class that sets the content type, and Syndication items to render the View.

link|flag
vote up 4 vote down

Use WCF System.ServiceModel.Syndication namespace for which you need to add System.ServiceMode.Web to your references. That handles the whole thing automatically:

using System.ServiceModel.Syndication;
// ...
var rss = new SyndicationFeed(...);
...
var formatter = new Rss20FeedFormatter(rss);
formatter.WriteTo(xmlWriter);
link|flag
vote up 1 vote down

Here are a couple links:

http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc

http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/

link|flag
@David beat me to it! – Dennis Palmer Jun 22 at 23:14

Your Answer

Get an OpenID
or

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