Click here to Skip to main content
15,884,099 members
Articles / Web Development / ASP.NET
Article

Really Simple RSS (Yeah, I know)

Rate me:
Please Sign up or sign in to vote.
3.61/5 (16 votes)
15 Oct 20072 min read 53.9K   55   12
An easy way to publish your own news feed in ASP.NET

Introduction

There are plenty of articles out there dealing with consuming RSS, but only a few dealing with making your own. Furthermore, every time I use the xsd.exe tool published by Microsoft, I find people who have never heard of it. Despite its limitations, it is a good tool that needs more mention.

One thing I would like to mention up front is that XML and XSD are usually camelCase and not pascalCase. Unfortunately, the xsd.exe tool generates a blind copy of casing. If you manually edit the generated *.cs file below, you can change the attributes and the casing to get pascalCase .NET code. The output will still be compliant camelCase RSS, i.e.

C#
[System.Xml.Serialization.XmlElement("rss")]
public partial class RSS {
    ...

I don't use this method in this article, in favor of generatability. With that said, I humbly present a simple XSD file and some code which, when used, will make it really simple to add really simple syndication to your site.

Background

This Wikipedia Article on RSS is the best background, I think.

Code

I skipped a lot of the standards for RSS 2.0 to make life easier. If you find you need a field that the schema below doesn't provide, then add it and regenerate the class file. Basically, copy and paste the file below into a file on your machine called C:\RSS_20.xsd (chosen for the article's sake; change at will).

XML
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 
    elementFormDefault="unqualified" version="2.0.1.10">
    <xs:annotation>
        <xs:documentation>Simple XML Schema for RSS 2.0</xs:documentation>
    </xs:annotation>
    <xs:element name="rss">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="channel">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element name="title" type="xs:string" />
                            <xs:element name="link" type="xs:anyURI" />
                            <xs:element name="description" 
                                type="xs:string" />
                            <xs:element name="language" type="xs:string" />
                            <xs:element name="pubDate" type="xs:dateTime" />
                            <xs:element name="lastBuildDate" 
                                type="xs:dateTime" />
                            <xs:element name="docs" type="xs:string" />
                            <xs:element name="generator" type="xs:string" />
                            <xs:element name="managingEditor" 
                                type="xs:string" />
                            <xs:element name="webMaster" type="xs:string" />
                            <xs:element name="item" maxOccurs="unbounded">
                                <xs:complexType>
                                    <xs:sequence>
                                        <xs:element name="title" 
                                            type="xs:string" />
                                        <xs:element name="link" 
                                            type="xs:string" />
                                        <xs:element name="description" 
                                            type="xs:string" />
                                        <xs:element name="pubDate" 
                                            type="xs:dateTime" />
                                        <xs:element name="guid" 
                                            type="xs:string" />
                                    </xs:sequence>      
                                </xs:complexType> 
                            </xs:element>
                        </xs:sequence>    
                    </xs:complexType>   
                </xs:element>
            </xs:sequence>
            <xs:attribute name="version" type="xs:string"/>
        </xs:complexType>
    </xs:element>
</xs:schema>

Now the fun part. Run a Visual Studio command prompt. There should be a shortcut installed from the Start menu -> Visual Studio -> Visual Studio Tools. If you cannot find it, then just open a command prompt and change your path Environment Variable. While I cannot tell you what your path will be, the one on my current machine is C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727. Your mileage may vary. For those that don't know, the path command is SET PATH=C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin with no space between the equals.

  • In the command prompt, type C: and press Enter
  • In the command prompt, type cd\ and press Enter
  • In the command prompt, type xsd.exe RSS_20.xsd -c /n:"My.Favorite.Namespace" and press Enter

You should now have a RSS_20.cs file created.

C#
//--------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.832
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//--------------------------------------------------------------------------

...
snip
...

Add the file to your favorite C# project in ASP.NET. Create a sample page with only the page load method wired up and add the code below.

C#
private rss FakeRss(){
    rss someRss = new rss();
    someRss.version = "2.0";
    someRss.channel = new rssChannel();
    someRss.channel.description = "A nice description for the channel";
    someRss.channel.language = "en-us";
    someRss.channel.link = "http://www.erlglobal.com";
    someRss.channel.title = "The Title of my feed";
    someRss.channel.pubDate = DateTime.Now.ToUniversalTime();

    rssChannelItem channelItem = new rssChannelItem();
    channelItem.pubDate = DateTime.Now.ToUniversalTime();
    channelItem.title = "News Item Title";
    channelItem.link = "http://www.a.link.to.the.item";
    channelItem.guid = "Usually the link but make it unique";
    channelItem.description = "A Brief Summary";
    someRss.channel.item = new rssChannelItem[]{channelItem};

    return someRss;
}

protected void Page_Load(object sender, EventArgs e) {
    Response.Clear();
    Response.ContentType = "text/xml";
    Response.ContentEncoding = System.Text.Encoding.UTF8;
    XmlSerializer XML = new XmlSerializer(typeof(rss));
    xml.Serialize(Response.Output, FakeRss());
    Response.End();
}

There you go: an RSS feed that you can deliver from your own site, using a schema which can be validated against illustrating the xsd.exe tool.

Points of Interest

History

  • 9 October, 2007 -- Removed error in the *.xsd, thanks pzkpfw
  • 5 October, 2007 -- Original version posted

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect ERL GLOBAL, INC
United States United States
My company is ERL GLOBAL, INC. I develop Custom Programming solutions for business of all sizes. I also do Android Programming as I find it a refreshing break from the MS.

Comments and Discussions

 
QuestionWhy not use a HttpHandler? Pin
Peter Bucher22-Nov-07 8:29
Peter Bucher22-Nov-07 8:29 
AnswerRe: Why not use a HttpHandler? Pin
Ennis Ray Lynch, Jr.23-Nov-07 16:24
Ennis Ray Lynch, Jr.23-Nov-07 16:24 
GeneralRe: Why not use a HttpHandler? Pin
Peter Bucher23-Nov-07 22:48
Peter Bucher23-Nov-07 22:48 
GeneralBookmark pays off - thanks Pin
philmee957-Nov-07 7:04
philmee957-Nov-07 7:04 
QuestionServer Error in '/' Application Pin
Mavusana24-Oct-07 22:09
Mavusana24-Oct-07 22:09 
AnswerThis may be the wrong forum Pin
Ennis Ray Lynch, Jr.25-Oct-07 3:01
Ennis Ray Lynch, Jr.25-Oct-07 3:01 
GeneralNice quick jumpstart Pin
pzkpfw9-Oct-07 10:51
pzkpfw9-Oct-07 10:51 
GeneralRofl Pin
Ennis Ray Lynch, Jr.9-Oct-07 11:56
Ennis Ray Lynch, Jr.9-Oct-07 11:56 
GeneralLittle Dissapointed Pin
MikJr8-Oct-07 17:03
MikJr8-Oct-07 17:03 
GeneralRe: Little Dissapointed Pin
Ennis Ray Lynch, Jr.9-Oct-07 3:39
Ennis Ray Lynch, Jr.9-Oct-07 3:39 
GeneralRSS 2.0 Schema Pin
pulsar7-Oct-07 0:50
pulsar7-Oct-07 0:50 
GeneralRe: RSS 2.0 Schema Pin
Ennis Ray Lynch, Jr.7-Oct-07 13:53
Ennis Ray Lynch, Jr.7-Oct-07 13:53 
Thanks for the nice words and the link. I missed that one on searching (actually I inferred the schema from wiki :p )

The primary motivation for such a simple schema was that I only needed those fields thus no reason to bother. Many of the more complete schema's out there generate some rather "interesting" cs files.


Need a C# Consultant? I'm available.


Happiness in intelligent people is the rarest thing I know. -- Ernest Hemingway

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.