show/hide this revision's text 2 added 90 characters in body

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?

Fixed now ... don't use file file:/// urls even if you are feeding yourself the files.

<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>
show/hide this revision's text 1

RSS Enclosure is ignored

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?

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