IN .NET 3.5 I know of the System.ServiceModel.Syndication classes which can create Atom 1.0 and RSS 2.0 rss feeds. Does anyone know of a way to easily generate yahoo's Media RSS in ASP.Net? I am looking for a free and fast way to generate an MRSS feed.
feedback
|
|
Step 1: Convert your data into XML: So, given a List photos:
Step 2: Run the XML through some XSLT: Then using something like the following, run that through some XSLT, where xslPath is the path to your XSLT, current is the current HttpContext:
I have those two bits of code sitting in one method "BuildPhotoStream". The class "XslHelpers" contains the following:
This basically provides me with some nice formatting of dates that XSLT doens't give me. Step 3: Render the resulting XML back to the client application: "BuildPhotoStream" is called by "RenderHelpers.Photos" and "RenderHelpers.LatestPhotos", which are responsible for getting the photo details from the Linq2Sql objects, and they are called from an empty aspx page (I know now that this should really be an ASHX handler, I've just not gotten around to fixing it):
At the end of all that, I end up with this: Which worked in Cooliris/PicLens when I set it up, however now seems to render the images in the reflection plane, and when you click on them, but not in the wall view :( In case you missed it above, the XSLT can be found here: You'll obviously need to edit it to suit your needs (and open it in something like Visual Studio - FF hides most of the stylesheet def, including xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss"). | |||||
feedback
|
|
I was able to add the media namespace to the rss tag by doing the following:
| |||
|
feedback
|
|
Here a simplified solution I ended up using within a HttpHandler (ashx):
| |||
|
feedback
|
|
Just to add another option for future reference: I created a library that leverages the SyndicationFeed classes in .NET and allows you to read and write media rss feeds. | |||
|
feedback
|