I am new to creating RSS with WCF’s SyndicationFeed Object. I am working on creating an RSS Feed to serve movies as well as pictures. I am currently able to have my plain text RSS XML display correctly but have had little progress getting the pictures and videos to show up or at least a placeholder shop up. How do I go about making this happen? Below is a copy of the XML document I am working with. Basically, how do I make it user friendly, add the write controls and media players for the right content and all??
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/"
xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
<title>My Movie Review Site</title>
<link>http://www.foo.com</link>
<description>I review movies.</description>
<item>
<title>Movie Title: Is this a good movie?</title>
<link>http://www.foo.com/item1.htm</link>
<media:content url="http://www.foo.com/trailer.mov"
fileSize="12216320" type="video/quicktime" expression="sample"/>
<creativeCommons:license>
http://www.creativecommons.org/licenses/by-nc/1.0
</creativeCommons:license>
<media:rating>nonadult</media:rating>
</item></channel></rss>
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.