
Can't embed with RSS Playlist
I am trying to embed the jwplayer with an RSS playlist, but it isn't working. I get an "Error loading playlist: Error loading file" error, which elsewhere on this site indicates that the RSS file isn't loading, probably due to CORS header issue.
I have tried doing this cross-domain on a website hosted by dreamhost.com. They have suggested that I put the .rss file on a Virtual Private Server that I have with them, and I have done so, and it still doesn't work. I am still pursuing that with their tech support.
I read the Q&A at http://support.jwplayer.com/customer/portal/questions/6244278-using-an-rss-feed and the suggestion that I put everything on the same subdomain. I have done so, and the result is at http://english.globalreach.org/index.cfm?event=lessonlist&cid=40 but it's still not working.
Here is the code I used to embed the video:
===code starts here===
<script src="http://jwpsrv.com/library/mK+kXudlEeOyMyIACtqXBA.js"></script>
<center>
<div id="myElement">Loading the player...</div>
<script type="text/javascript">
jwplayer("myElement").setup({
playlist: "http://english.globalreach.org/english/images/S3131en-play-globalreach.rss",
width: 680,
height: 360,
listbar: {
position: "right",
size: 240
}
});
</script>
</center>
===code ends here===
and here is the rss text that is in the file that I have placed in the exact same folder and subdomain. This file is called: S3131en-play-globalreach.rss
====RSS text starts here===
<rss version="2.0" xmlns:jwplayer="http://rss.jwpcdn.com/">
<channel>
<item>
<title>Lesson 1:</title>
<description>God: His Nature and Natural Characteristics</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L01-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L01.jpg/S3131en-L01-Thumb.jpg</jwplayer:image>
</item>
<item> <title>Lesson 2:</title>
<description>God: His Moral Characteristics and Works</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L02-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L02.jpg</jwplayer:image>
</item>
<item> <title>Lesson 3:</title>
<description>Christ</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L03-AGTV-MP4-Wide.mp4/location> <jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L03.jpg</jwplayer:image>
</item>
<item> <title>Lesson 4:</title>
<description>The Holy Spirit</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L04-AGTV-MP4-Wide.mp4" /> <jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L04.jpg</jwplayer:image>
</item>
<item> <title>Lesson 5:</title>
<description>Angels: Armies of Darkness and Armies of Light</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L05-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L05.jpg</jwplayer:image>
</item>
<item> <title>Lesson 6:</title>
<description>Mankind: Human Subjects of the Creator</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L06-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L06.jpg</jwplayer:image>
</item>
<item> <title>Lesson 7:</title>
<description>Sin and Salvation: Problem and Solution</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L07-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L06.jpg</jwplayer:image>
</item>
<item> <title>Lesson 8:</title>
<description>The Scriptures: God’s Written Revelation</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L08-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L06.jpg</jwplayer:image>
</item>
<item> <title>Lesson 9:</title>
<description>The Church: The Community of God’s People</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L09-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L06.jpg</jwplayer:image>
</item>
<item> <title>Lesson 10:</title>
<description>The Future: Revelation, Reward, and Rest</description>
<jwplayer:source file="http://english.globalreach.org/english/images/S3131en-L10-AGTV-MP4-Wide.mp4" />
<jwplayer:image>http://english.globalreach.org/english/images/E0100TL_L06.jpg</jwplayer:image>
</item>
</channel>
</rss>
===RSS Text ends===
I appreciate any help that you can give me with this code.