Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > RSS newsfeed

Reply
Thread Tools

RSS newsfeed

 
 
Dennis Allen
Guest
Posts: n/a
 
      11-07-2005
Hi. I'm new to this newsgroup, hope someone here can help. I wrote a
simple ASP that reads various newsfeeds for my local astronomy club. See
http://www.wmich-astro.org, on left frame click [news links].

Problem. Sometimes when I execute my script, I get:

msxml3.dll error '800c0005'
The system cannot locate the resource specified
mas/asp/astrowire2.asp, line 51

I use the following script code:

<%@ language="javascript" %>
..
..
//
function xml_load(src) {
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
xmlhttp.open("GET",src,false)
xmlhttp.send()
xmlDoc = xmlhttp.responseXML
if (typeof(xmlDoc) != "object" ||
xmlhttp.GetResponseHeader("Content-Type") != "text/xml") {
var szResponse = xmlhttp.responseText
xmlDoc.loadXML(szResponse)
}
if (typeof(xmlDoc) != "object") return 'no object defined'
if (xmlDoc.parseError.errorCode != 0) {
var x = ''
// x += 'Error in File: ' + xmlDoc.parseError.url + '<br>'
x += 'Error in File: ' + src + '<br>'
x += 'Error on Line: ' + xmlDoc.parseError.line + '<br>'
x += 'Error Code : ' + xmlDoc.parseError.errorCode + '<br>'
x += 'Error Reason : ' + xmlDoc.parseError.reason
return x
}
return xmlDoc
}

The xmlhttp.send is line 51. If I use the browser's refresh (several
times) I can sometimes get it to work. I wish I could trap and correct
for this error. Is this a firewall problem? Is there anything the
person who runs the server can do? Any help would be greatly
appreciated...Dennis


 
Reply With Quote
 
 
 
 
Dennis Allen
Guest
Posts: n/a
 
      11-08-2005
Hi. I googled this problem, few hits. People suspect it's a firewall
problem. Perhaps the browser is not releasing variables. I tried to
clean up my function, but still get the error and need to refresh once
in a while. I'd like to release memory variables, but that should be
already done in javascript.

//
function xml_load(src) {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
xmlhttp.open("GET",src,false)
xmlhttp.send()
var xmlDoc = xmlhttp.responseXML
if (xmlhttp.GetResponseHeader("Content-Type") != "text/xml") {
var szResponse = xmlhttp.responseText
xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
if (typeof(xmlDoc) == "object") xmlDoc.loadXML(szResponse)
}
if (typeof(xmlDoc) != "object") return 'no object defined'
if (xmlDoc.parseError.errorCode != 0) {
var x = ''
// x += 'Error in File: ' + xmlDoc.parseError.url + '<br>'
x += 'Error in File: ' + src + '<br>'
x += 'Error on Line: ' + xmlDoc.parseError.line + '<br>'
x += 'Error Code : ' + xmlDoc.parseError.errorCode + '<br>'
x += 'Error Reason : ' + xmlDoc.parseError.reason
return x
}
return xmlDoc
}


 
Reply With Quote
 
 
 
 
bregent
Guest
Posts: n/a
 
      11-15-2005
Sorry I cannot help Dennis, but are you willing to include all of your rss code
so that I can use it in one of my sites? I may be able to help you troubleshoot
your problem too.


In article <#>, Dennis Allen says...
>
>Hi. I'm new to this newsgroup, hope someone here can help. I wrote a
>simple ASP that reads various newsfeeds for my local astronomy club. See
>http://www.wmich-astro.org, on left frame click [news links].
>
>Problem. Sometimes when I execute my script, I get:
>
>msxml3.dll error '800c0005'
>The system cannot locate the resource specified
>mas/asp/astrowire2.asp, line 51
>
>I use the following script code:
>
><%@ language="javascript" %>
>.
>.
>//
>function xml_load(src) {
>var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
>var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
>xmlhttp.open("GET",src,false)
>xmlhttp.send()
>xmlDoc = xmlhttp.responseXML
>if (typeof(xmlDoc) != "object" ||
>xmlhttp.GetResponseHeader("Content-Type") != "text/xml") {
>var szResponse = xmlhttp.responseText
>xmlDoc.loadXML(szResponse)
>}
>if (typeof(xmlDoc) != "object") return 'no object defined'
>if (xmlDoc.parseError.errorCode != 0) {
>var x = ''
>// x += 'Error in File: ' + xmlDoc.parseError.url + '<br>'
>x += 'Error in File: ' + src + '<br>'
>x += 'Error on Line: ' + xmlDoc.parseError.line + '<br>'
>x += 'Error Code : ' + xmlDoc.parseError.errorCode + '<br>'
>x += 'Error Reason : ' + xmlDoc.parseError.reason
>return x
>}
>return xmlDoc
>}
>
>The xmlhttp.send is line 51. If I use the browser's refresh (several
>times) I can sometimes get it to work. I wish I could trap and correct
>for this error. Is this a firewall problem? Is there anything the
>person who runs the server can do? Any help would be greatly
>appreciated...Dennis
>
>


 
Reply With Quote
 
bregent
Guest
Posts: n/a
 
      11-21-2005
Dennis, thanks very much. I'll give it a try in the next few days and get back
to you.


In article <>, Dennis Allen says...
>
>Thanks for the offer. Just came back. Everything seems to be working
>now, so I don't know if it's a problem on my end or the server. If
>you're still interested, I've attached my rss reader script. Call
>astrowire.asp?1 for the NASA watch feed, astrowire2.asp?2 for Mars
>today, etc.
>
>If you find something wrong, please let me know...Dennis
>
>
>"bregent" <> wrote in message
>news:...
>> Sorry I cannot help Dennis, but are you willing to include all of your
>> rss code
>> so that I can use it in one of my sites? I may be able to help you
>> troubleshoot
>> your problem too.
>>
>>
>> In article <#>, Dennis Allen
>> says...
>>>
>>>Hi. I'm new to this newsgroup, hope someone here can help. I wrote a
>>>simple ASP that reads various newsfeeds for my local astronomy club.
>>>See
>>>http://www.wmich-astro.org, on left frame click [news links].
>>>
>>>Problem. Sometimes when I execute my script, I get:
>>>
>>>msxml3.dll error '800c0005'
>>>The system cannot locate the resource specified
>>>mas/asp/astrowire2.asp, line 51
>>>
>>>I use the following script code:
>>>
>>><%@ language="javascript" %>
>>>.
>>>.
>>>//
>>>function xml_load(src) {
>>>var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
>>>var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
>>>xmlhttp.open("GET",src,false)
>>>xmlhttp.send()
>>>xmlDoc = xmlhttp.responseXML
>>>if (typeof(xmlDoc) != "object" ||
>>>xmlhttp.GetResponseHeader("Content-Type") != "text/xml") {
>>>var szResponse = xmlhttp.responseText
>>>xmlDoc.loadXML(szResponse)
>>>}
>>>if (typeof(xmlDoc) != "object") return 'no object defined'
>>>if (xmlDoc.parseError.errorCode != 0) {
>>>var x = ''
>>>// x += 'Error in File: ' + xmlDoc.parseError.url + '<br>'
>>>x += 'Error in File: ' + src + '<br>'
>>>x += 'Error on Line: ' + xmlDoc.parseError.line + '<br>'
>>>x += 'Error Code : ' + xmlDoc.parseError.errorCode + '<br>'
>>>x += 'Error Reason : ' + xmlDoc.parseError.reason
>>>return x
>>>}
>>>return xmlDoc
>>>}
>>>
>>>The xmlhttp.send is line 51. If I use the browser's refresh (several
>>>times) I can sometimes get it to work. I wish I could trap and correct
>>>for this error. Is this a firewall problem? Is there anything the
>>>person who runs the server can do? Any help would be greatly
>>>appreciated...Dennis
>>>
>>>

>>

>
>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Two ways to generate RSS - rss/maker and rss/2.0 - which is better? Jonathan Groll Ruby 1 06-27-2009 03:53 AM
Limiting RSS Newsfeed to 10 Items (Headlines) Specter XML 0 07-13-2004 11:15 PM
good cljp public newsfeed Jean Lutrin Java 1 05-27-2004 07:17 PM
RSS newsfeed Trevor Andrews XML 0 01-24-2004 07:45 AM
Re: rss newsfeed loaded to my mainpage jojo XML 2 06-29-2003 10:46 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57