How would you reccommend handling RSS Feeds in ASP.NET MVC? Using a third party library? Using the RSS stuff in the BCL? Just making an RSS view that renders the XML? Or something completely different?
|
17
|
|
|
|
|
|
Here is what I recommend:
That is probably the quickest and reusable way of returning rss has a response to a request in ASP.NET MVC. |
|||
|
|
|
I've wrote an RssResult which you can have a look at if you like. It should meet your requirements http://www.wduffy.co.uk/blog/rssresult-aspnet-mvc-rss-actionresult/ |
||
|
|
|
|
Here's a follow up post that takes the RssActionResult idea a bit further with a generalized SyndicationAction result class as well as a 304 NotModified conditional get filter. http://www.58bits.com/blog/ASPNET-MVC-304-Not-Modified-Filter-For-Syndication-Content.aspx |
||
|
|
|
|
The .NET framework exposes classes that handle syndation: SyndicationFeed etc. So instead of doing the rendering yourself or using some other suggested RSS library why not let the framework take care of it? Basically you just need the following custom ActionResult and you're ready to go:
Now in your controller action you can simple return the following:
There's a full sample on my blog at http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/ |
|||
|
|
|
|
Using RssToolkit you just need to have a single .ashx file in your project to generate RSS feed. Then you can rewrite its URL to a friendly one. I think there is not anything against MVC in this approach. |
||
|
|
|
|
@Brad- Below is the documentation of Html Encode from MSDN:
|
||
|
|
|
|
I don't agree with @Haacked. The world is full of invalid RSS XML generated by a templating system. Please don't add to the mess! Ricky, HTML encoding != XML encoding. |
||
|
|
|
|
I agree with Haacked. I am currently implementing my site/blog using the MVC framework and I went with the simple approach of creating a new View for RSS:
For more information, check out (shameless plug) http://rickyrosario.com/Blog/creating-an-rss-feed-in-asp-net-mvc |
||
|
|
|
|
Another crazy approach, but has its advantage, is to use a normal .aspx view to render the RSS. In your action method, just set the appropriate content type. The one benefit of this approach is it is easy to understand what is being rendered and how to add custom elements such as geolocation. Then again, the other approaches listed might be better, I just haven't used them. ;) |
||||
|
