RSS ( Access is Denied)

Hi All,

If somebody help me I will be very thankful to you. I am trying to feed our website from a RSS of Different Sites. I got a code from this Forum It self. It is working with Lotus Domino 7.0 find as well as with simple html file until not uploaded to Server. But same code i wanted to use on Lotus Domino 8.0 it Give me Error at JavaScript "Access Denied’. And Once I refresh the page it does not show the javascript error but content yet not displayed to the page. I am giving the code below please have a look. I will be very thankful to you for your quick response. Please help me its an urgent.

The Code is


function GetNewsSource()

{

var iNews=0

var rss = new ActiveXObject(“Microsoft.XMLDOM”)

rss.async = false

rss.load(“http://feeds.feedburner.com/AbcNews_TopStories?format=xml”)

var itemNodes = rss.selectNodes(“/rss/channel/item”)

var iMax =parseInt( itemNodes.length)

sText =“”

for(var j=0;j<iMax-1;j++)

{

sText = sText+“<a href=”+itemNodes.item(j).getElementsByTagName(“link”).item(0).text+“>”+itemNodes.item(j).getElementsByTagName(“title”).item(0).text+“

}

document.getElementById(‘myTicker’).innerHTML=sText

}

This code i put in JSHeader

and This one I put to the form and parse it thru HTML

Please Help

With Regards,

Vikas K Sinha

Subject: RSS ( Access is Denied)

You didn’t like my response?

http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/4c685bd685760a9b85257434000d67c2?OpenDocument

And posting the same question, two days in a row, is considered bad form. I understand that there are a lot of posts, and yours may get lost, but you are also contributing to the noise in the forum.

Gregg

Subject: RE: RSS ( Access is Denied)

Hi! Gregg,

What ever link you have given to me that was not helped me. First Link PAVONE NewsReader its screen-shot show it is client based. and it does not help me. Second link also show client based and not cost effective. and third one I am unable to understand what is request and what is response. And the word you used “contributing to to noise” so let me clear that your post had not resolved my problem. There are other genius on this forum what i think who help me.

Thats way i posted next one. If you are not interested then please ignore my request.

Thanks,

Vikas

Subject: sorry Vikas, your behaviour is unacceptable and you do not deserve to be helped

Subject: RE: sorry Vikas, your behaviour is unacceptable and you do not deserve to be helped

What ever you think about me I don’t care. Friend If you are not intrested to help me please…

Subject: RSS ( Access is Denied)

Vikas,

I am 99% positive you can’t cross domains with Ajax. That example would work great if your RSS was hosted in the same domain.