RSS Reader

bcorbett

Active member
Joined
Oct 16, 2006
Messages
27
Programming Experience
Beginner
I have the following Reader. It works fine when I run it locally. but when I put it on the production server. it doesn't load the elements. I don't get any errors, it just doesn't load. I ran into this before and I had to download the rss feed and save it as a xml file and it works. But I had to create a SSIS job to download the file every 30 minutes and we're having issue with that. So, I need it to work directly with the rss feed. I'm guessing it some kind of security issue, bt not sure where to look. Any help will be apreciated.

<html>
<head>
<script src="translator.js"></script>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>


<div class="NewsnavHeader" style="WIDTH: 650px">Oil/Energy
<span style="FONT-WEIGHT: normal; FONT-SIZE: 9px; COLOR: #999999; FONT-FAMILY: arial">
(PRNewswire.com)
</span>
</div>
<div class="NewsNav">
<div class="RSS">
<div id="rssBodyTemplate" style="OVERFLOW-Y: scroll; OVERFLOW-X: hidden; OVERFLOW: scroll; HEIGHT: 150px">
<script>
try {readRSS(unescape("http://www.ogj.com/rss/articlefeed.cfm?section=GenIn&p=7"),0);}
catch(e) {}
</script>

</div>
</div>
</div>
</body>
</htmL>
 
Back
Top