Click here to Skip to main content
6,295,667 members and growing! (14,999 online)
Email Password   helpLost your password?
Languages » C# » General     Beginner

Really Simple RSS (Yeah, I know)

By Ennis Ray Lynch, Jr.

An easy way to publish your own news feed in ASP.NET
C#, XML, Windows, .NET, ASP.NET, Visual Studio, WebForms, Dev
Posted:5 Oct 2007
Updated:15 Oct 2007
Views:21,837
Bookmarked:50 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
15 votes for this article.
Popularity: 4.20 Rating: 3.58 out of 5
4 votes, 26.7%
1

2
2 votes, 13.3%
3
3 votes, 20.0%
4
6 votes, 40.0%
5

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.

[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 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.

//--------------------------------------------------------------------------

// <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.

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

About the Author

Ennis Ray Lynch, Jr.


Member
My company is ERL GLOBAL, INC. I develop software.
Occupation: Architect
Company: ERL GLOBAL, INC
Location: United States United States

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 12 of 12 (Total in Forum: 12) (Refresh)FirstPrevNext
GeneralWhy not use a HttpHandler? PinmemberPeter Bucher9:29 22 Nov '07  
GeneralRe: Why not use a HttpHandler? PinmemberEnnis Ray Lynch, Jr.17:24 23 Nov '07  
GeneralRe: Why not use a HttpHandler? PinmemberPeter Bucher23:48 23 Nov '07  
GeneralBookmark pays off - thanks Pinmemberphilmee958:04 7 Nov '07  
QuestionServer Error in '/' Application PinmemberMavusana23:09 24 Oct '07  
AnswerThis may be the wrong forum PinmemberEnnis Ray Lynch, Jr.4:01 25 Oct '07  
GeneralNice quick jumpstart Pinmemberpzkpfw11:51 9 Oct '07  
GeneralRofl PinmemberEnnis Ray Lynch, Jr.12:56 9 Oct '07  
GeneralLittle Dissapointed PinmemberMikJr18:03 8 Oct '07  
GeneralRe: Little Dissapointed PinmemberEnnis Ray Lynch, Jr.4:39 9 Oct '07  
GeneralRSS 2.0 Schema Pinmemberpulsar1:50 7 Oct '07  
GeneralRe: RSS 2.0 Schema PinmemberEnnis Ray Lynch, Jr.14:53 7 Oct '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 15 Oct 2007
Editor: Genevieve Sovereign
Copyright 2007 by Ennis Ray Lynch, Jr.
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project