
June 10th, 2004, 12:40 AM
|
|
Registered User
|
|
Join Date: Jun 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
String won't save to file on local server... HELP PLEASE!
Have the code below getting what looks like XML from the link, but when I attempt to save the file using xml.responseText Path, I get the error listed under the code.
Can anyone advise what I should do?
Code:
<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "http://setiathome.ssl.berkeley.edu/fcgi-bin/fcgi?cmd=team_lookup_xml&name=overclockers", False
xml.Send
Response.Write xml.responseText
Set xml = Nothing
%>
Quote: Microsoft VBScript runtime error '800a01a8'
Object required: '[string: "<?xml version="1.0" "]' |
Last edited by NeoMerlin : June 10th, 2004 at 12:00 PM.
Reason: New problem
|