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?
|
|
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. |
|||||||||
|
|
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/ |
||||
|
|
|
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. ;) |
|||||||||||
|
|
I got this from Eran Kampf and a Scott Hanselman vid (forgot the link) so it's only slightly different than some other posts here, but hopefully helpful and copy paste ready as an example rss feed.
And the Controller Code....
|
||||
|
|
