I'm generating XML files with a PHP script. The actual issue is with the XML file itself. When I read the XML file with a program like Ipodder, the content specified in the XML is downloaded with no problem. However, every Podcast receiver I try seems to ignore my date and time stamp. * I think * if the date and time stamp are updated then the Podcast reciever should re-download the content. That's not happening because the Ipodder already finds the file name in the cache. Here is my code. Am I doing something wrong in or not understanding something about Podcast receivers?
<?xml version="1.0" ?>
- <rss version="2.0">
- <channel>
<title> <link> <description>Test Corporate Content Feed</description>
<language>en-us</language>
<copyright>2005</copyright>
<lastBuildDate>Tue, 13 Dec 2005 01:54:37 Central Standard Time</lastBuildDate>
<webMaster>info@test.com</webMaster>
<ttl>1</ttl>
- <item>
<title>test.mp3</title>
<description>test.mp3</description>
<pubDate>Tue, 13 Dec 2005 01:54:37 Central Standard Time</pubDate>
<enclosure url=" length="" type="MP3 Content" />
</item>
</channel>
</rss>
<?xml version="1.0" ?>
- <rss version="2.0">
- <channel>
<title> <link> <description>Test Corporate Content Feed</description>
<language>en-us</language>
<copyright>2005</copyright>
<lastBuildDate>Tue, 13 Dec 2005 01:54:37 Central Standard Time</lastBuildDate>
<webMaster>info@test.com</webMaster>
<ttl>1</ttl>
- <item>
<title>test.mp3</title>
<description>test.mp3</description>
<pubDate>Tue, 13 Dec 2005 01:54:37 Central Standard Time</pubDate>
<enclosure url=" length="" type="MP3 Content" />
</item>
</channel>
</rss>