RSS Enclosure is ignored - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:04:21Z http://stackoverflow.com/feeds/question/988930 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/988930/rss-enclosure-is-ignored 0 RSS Enclosure is ignored Jake Pearson 2009-06-12T20:41:24Z 2009-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>&lt;rss version="2.0"&gt; &lt;channel&gt; &lt;title&gt;Joe Blow&lt;/title&gt; &lt;link&gt;http://google.com/&lt;/link&gt; &lt;description&gt;The Joe Blow Show&lt;/description&gt; &lt;managingEditor&gt;joeblow@gmail.com&lt;/managingEditor&gt; &lt;category&gt;Talk Radio&lt;/category&gt; &lt;item&gt; &lt;guid isPermaLink="false"&gt;1342&lt;/guid&gt; &lt;category&gt;Podcast&lt;/category&gt; &lt;title&gt;Joe Blow Show #1&lt;/title&gt; &lt;description&gt;Joe Blow Show #1&lt;/description&gt; &lt;pubDate&gt;Mon, 01 Jun 2009 13:57:47 -0600&lt;/pubDate&gt; &lt;enclosure url="file:///C:/JoeBlowShow1.mp3" type="audio/mpeg" length="101725855" /&gt; &lt;/item&gt; &lt;/channel&gt; &lt;/rss&gt; </code></pre> http://stackoverflow.com/questions/988930/rss-enclosure-is-ignored/988978#988978 1 Answer by Mike Wills for RSS Enclosure is ignored Mike Wills 2009-06-12T20:50:42Z 2009-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>