Hi,
I have ahd this script running without problem for a while now and just yesterday it started to fail every time it is run... the error message I am getting is:
Microsoft VBScript runtime error '800a01fb'
An exception occurred: 'xml.Send'
/includes/functionList.inc, line 38
basically the code is:
I teste the 'xml' object with IsObject and it returns true... I have tried differnt web pages to no avail... anyone have any ideas?
When I Goolge the runtime error, there is a lot of talk about not closing record set objects... could this error have something to o with another area of the code maybe?
Any suggestions?
I have ahd this script running without problem for a while now and just yesterday it started to fail every time it is run... the error message I am getting is:
Microsoft VBScript runtime error '800a01fb'
An exception occurred: 'xml.Send'
/includes/functionList.inc, line 38
basically the code is:
Code:
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "[URL unfurl="true"]http://finance.yahoo.com/q?s=USDCAD=X",[/URL] False
' Pull the data from the web page
xml.Send
I teste the 'xml' object with IsObject and it returns true... I have tried differnt web pages to no avail... anyone have any ideas?
When I Goolge the runtime error, there is a lot of talk about not closing record set objects... could this error have something to o with another area of the code maybe?
Any suggestions?