RSS Enclosure is ignored - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:04:21Zhttp://stackoverflow.com/feeds/question/988930http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/988930/rss-enclosure-is-ignored0RSS Enclosure is ignoredJake Pearson2009-06-12T20:41:24Z2009-06-15T14:07:09Z
<p>I'm trying to create a Podcast RSS feed using WCF. The feed seems to be valid, but the enclosure tag is being ignored. Any ideas?</p>
<p>Fixed now ... don't use file file:/// urls even if you are feeding yourself the files.</p>
<pre><code><rss version="2.0">
<channel>
<title>Joe Blow</title>
<link>http://google.com/</link>
<description>The Joe Blow Show</description>
<managingEditor>joeblow@gmail.com</managingEditor>
<category>Talk Radio</category>
<item>
<guid isPermaLink="false">1342</guid>
<category>Podcast</category>
<title>Joe Blow Show #1</title>
<description>Joe Blow Show #1</description>
<pubDate>Mon, 01 Jun 2009 13:57:47 -0600</pubDate>
<enclosure url="file:///C:/JoeBlowShow1.mp3" type="audio/mpeg" length="101725855" />
</item>
</channel>
</rss>
</code></pre>
http://stackoverflow.com/questions/988930/rss-enclosure-is-ignored/988978#9889781Answer by Mike Wills for RSS Enclosure is ignoredMike Wills2009-06-12T20:50:42Z2009-06-12T20:50:42Z<p>Two things:</p>
<ol>
<li>The enclosure should not be stored on your hard drive. This should be a world accessible URL. (This assumes that you are publishing this on the web.)</li>
<li>Run the feed through a <a href="http://beta.feedvalidator.org/" rel="nofollow">feed validator</a> to look for errors.</li>
</ol>