RSS Feeds in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T02:50:36Zhttp://stackoverflow.com/feeds/question/11915http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc23RSS Feeds in ASP.NET MVCLance Fisher2008-08-15T02:56:41Z2009-10-29T11:42:25Z
<p>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?</p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/11920#1192018Answer by Dale Ragan for RSS Feeds in ASP.NET MVCDale Ragan2008-08-15T03:12:49Z2008-08-15T03:18:50Z<p>Here is what I recommend:</p>
<ol>
<li>Create a class called RssResult that
inherits off the abstract base class
ActionResult.</li>
<li>Override the ExecuteResult method.</li>
<li>ExecuteResult has the ControllerContext passed to it by the caller and with this you can get the data and content type.</li>
<li><p>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.</p></li>
<li><p>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.</p></li>
<li><p>Then any request to this action will receive rss of whatever data you choose.</p></li>
</ol>
<p>That is probably the quickest and reusable way of returning rss has a response to a request in ASP.NET MVC.</p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/12002#120024Answer by Haacked for RSS Feeds in ASP.NET MVCHaacked2008-08-15T05:49:33Z2008-08-15T05:49:33Z<p>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.</p>
<p>Then again, the other approaches listed might be better, I just haven't used them. ;)</p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/13662#136627Answer by Ricky for RSS Feeds in ASP.NET MVCRicky2008-08-17T15:05:47Z2008-08-17T15:05:47Z<p>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:</p>
<pre><code><%@ 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>
</code></pre>
<p>For more information, check out (shameless plug) <a href="http://rickyrosario.com/Blog/creating-an-rss-feed-in-asp-net-mvc" rel="nofollow"><a href="http://rickyrosario.com/Blog/creating-an-rss-feed-in-asp-net-mvc" rel="nofollow">http://rickyrosario.com/Blog/creating-an-rss-feed-in-asp-net-mvc</a></a></p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/13695#136957Answer by Brad Wilson for RSS Feeds in ASP.NET MVCBrad Wilson2008-08-17T16:01:20Z2008-08-17T16:01:20Z<p>I don't agree with @Haacked.</p>
<p>The world is full of invalid RSS XML generated by a templating system. Please don't add to the mess!</p>
<p>Ricky, HTML encoding != XML encoding.</p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/14000#140001Answer by Ricky for RSS Feeds in ASP.NET MVCRicky2008-08-17T22:54:10Z2008-08-17T22:54:10Z<p>@Brad- Below is the documentation of Html Encode from MSDN:</p>
<blockquote>
<p>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  .</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/73z22y6h.aspx" rel="nofollow" title="Cherry G80-11900"><a href="http://msdn.microsoft.com/en-us/library/73z22y6h.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/73z22y6h.aspx</a></a></p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/285090#2850900Answer by Mahdi for RSS Feeds in ASP.NET MVCMahdi2008-11-12T19:43:25Z2008-11-12T19:43:25Z<p>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.</p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/433167#43316717Answer by Eran Kampf for RSS Feeds in ASP.NET MVCEran Kampf2009-01-11T16:34:26Z2009-06-15T05:38:07Z<p>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?</p>
<p>Basically you just need the following custom ActionResult and you're ready to go:</p>
<pre><code>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);
}
}
}
</code></pre>
<p>Now in your controller action you can simple return the following:</p>
<pre><code>return new RssActionResult() { Feed = myFeedInstance };
</code></pre>
<p>There's a full sample on my blog at <a href="http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/" rel="nofollow">http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/</a></p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/1198203#11982032Answer by Anthony Bouch for RSS Feeds in ASP.NET MVCAnthony Bouch2009-07-29T05:36:43Z2009-07-29T05:36:43Z<p>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.</p>
<p><a href="http://www.58bits.com/blog/ASPNET-MVC-304-Not-Modified-Filter-For-Syndication-Content.aspx" rel="nofollow">http://www.58bits.com/blog/ASPNET-MVC-304-Not-Modified-Filter-For-Syndication-Content.aspx</a></p>
http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc/1643143#16431430Answer by WDuffy for RSS Feeds in ASP.NET MVCWDuffy2009-10-29T11:42:25Z2009-10-29T11:42:25Z<p>I've wrote an RssResult which you can have a look at if you like. It should meet your requirements
<a href="http://www.wduffy.co.uk/blog/rssresult-aspnet-mvc-rss-actionresult/" rel="nofollow">http://www.wduffy.co.uk/blog/rssresult-aspnet-mvc-rss-actionresult/</a></p>