up vote 66 down vote favorite
53
share [g+] share [fb]

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?

link|improve this question

65% accept rate
1  
Just to update this question as of 18 months following last edit - It seemed reasonable to question 'have things changed with iterations to both .net and mvc that would change how we approach the problem of feed management'? The consensus (via a different SO thread) is that, 'No fundamental changes - this remains your best set of alternatives.' – justSteve Mar 7 '11 at 15:35
feedback

8 Answers

up vote 33 down vote accepted

Here is what I recommend:

  1. Create a class called RssResult that inherits off the abstract base class ActionResult.
  2. Override the ExecuteResult method.
  3. ExecuteResult has the ControllerContext passed to it by the caller and with this you can get the data and content type.
  4. Once you change the content type to rss, you will want to serialize the data to RSS (using your own code or another library) and write to the response.

  5. Create an action on a controller that you want to return rss and set the return type as RssResult. Grab the data from your model based on what you want to return.

  6. Then any request to this action will receive rss of whatever data you choose.

That is probably the quickest and reusable way of returning rss has a response to a request in ASP.NET MVC.

link|improve this answer
Combining this answer with the answer from Matt Hamilton has worked well for me. – Doug McClean Oct 15 '08 at 1:47
2  
Hanselman has a similar solution (video: starting around 41m) where he inherits from FileResult. By doing so, you can have your class's constructor call base("application/rss+xml") and avoid steps 3 and 4. He does override ExecuteResult, but it isn't vital. He also shortcuts a lot of typically-homespun code and uses the 3.5+ features of SyndicateItem, SyndicateFeed, and Rss20FeedFormatter. – patridge Jul 21 '10 at 22:04
1  
If you're going to down vote, please follow the correct procedures and explain why. Also, you need to know that the SyndicationFeed and Rss20FeedFormatter are under the System.ServiceModel Namespace. If you're going to include those, you might as well build a WCF Service to handle the request, because that's where the WCF classes live. It's just my opinion, I don't like including a whole different framework with another framework just for the ease of use if it's not justified. – Dale Ragan May 26 '11 at 12:36
@Dale: is it possible to write to the response when you want to output to feed to a partial view? Thanks. – Christian Aug 8 '11 at 7:40
feedback

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:

public class RssActionResult : ActionResult
{
    public SyndicationFeed Feed { get; set; }

    public override void ExecuteResult(ControllerContext context)
    {
        context.HttpContext.Response.ContentType = "application/rss+xml";

        Rss20FeedFormatter rssFormatter = new Rss20FeedFormatter(Feed);
        using (XmlWriter writer = XmlWriter.Create(context.HttpContext.Response.Output))
        {
            rssFormatter.WriteTo(writer);
        }
    }
}

Now in your controller action you can simple return the following:

return new RssActionResult() { Feed = myFeedInstance };

There's a full sample on my blog at http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/

link|improve this answer
6  
This should be the accepted response. Thanks! – Felipe Lima May 22 '10 at 22:06
feedback

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:

<%@ Page ContentType="application/rss+xml" Language="C#" AutoEventWireup="true" CodeBehind="PostRSS.aspx.cs" Inherits="rr.web.Views.Blog.PostRSS" %><?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>ricky rosario's blog</title>
<link>http://<%= Request.Url.Host %></link>
<description>Blog RSS feed for rickyrosario.com</description>
<lastBuildDate><%= ViewData.Model.First().DatePublished.Value.ToUniversalTime().ToString("r") %></lastBuildDate>
<language>en-us</language>
<% foreach (Post p in ViewData.Model) { %>
    <item>
    <title><%= Html.Encode(p.Title) %></title>
    <link>http://<%= Request.Url.Host + Url.Action("ViewPostByName", new RouteValueDictionary(new { name = p.Name })) %></link>
    <guid>http://<%= Request.Url.Host + Url.Action("ViewPostByName", new RouteValueDictionary(new { name = p.Name })) %></guid>
    <pubDate><%= p.DatePublished.Value.ToUniversalTime().ToString("r") %></pubDate>
    <description><%= Html.Encode(p.Content) %></description>
    </item>
<% } %>
</channel>
</rss>

For more information, check out (shameless plug) http://rickyrosario.com/blog/creating-an-rss-feed-in-asp-net-mvc

link|improve this answer
2  
for Razor use: @model PageModel @{Response.ContentType = "application/rss+xml"; }<?xml version="1.0" encoding="UTF-8" ?> – Anthony Johnston Jan 21 '11 at 16:11
1  
thanks! this is just simple and effective.. right way of doing things :).. how need this overhead with custom ActionResult and SyndicationFeed ??? – alexanderb Feb 17 '11 at 13:20
1  
What overhead? you mean the fact that you're writing less code to accomplish the same thing in a more readable way? – Paul Mar 6 '11 at 19:19
feedback

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. ;)

link|improve this answer
How can you ensure the XML is valid doing this way? It would be nice if the view rendering was decoupled from an incoming web request, to make XML views, or email templates like done ruby on rails possible. – Paco Nov 12 '08 at 20:28
Rather than using a view engine, you could create an RssResult that derives from ActionResult. We do this with the JsonResult which serializes the object to JSON. In your case, you'd find some serializer (I think WCF has one) that serializes to RSS. – Haacked Nov 19 '08 at 8:49
feedback

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

link|improve this answer
feedback

@Brad- Below is the documentation of Html Encode from MSDN:

Due to current implementation details, this function can be used as an xmlEncode function. Currently, all named entities used by this function are also xml predefined named entities. They are < > " & encoded as < > " and &. Other entities are decimal-encoded like  .

http://msdn.microsoft.com/en-us/library/73z22y6h.aspx

link|improve this answer
feedback

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/

link|improve this answer
feedback

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.

link|improve this answer
1  
bad suggestion for ASP.NET MVC. – tugberk Dec 18 '11 at 18:14
feedback

Your Answer

 
or
required, but never shown

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