[thelist] HTTP Request

Joe Ngo chilijoe at gmail.com
Thu Jan 27 08:28:52 CST 2005


There are probably other ways to do so. One way I can think of is use
a XMLHTTP object to receive the request, then use the responseText
property as the value of the response.

Then you can use the loadxml method of your xmldocument object to
parse the string and load.

Something like this (untested):

Set xmlhttp = Server.CreateObject("Msxml2.XMLHTTP.3.0"); ' or
whichever version is available
xmlhttp.open "GET", requestURL, False
xmlhttp.send
textresponse = xmlhttp.responseText
'at this point you can save textresponse to file
xmldoc.loadxml(textresponse)



-- 
Take back the web!
http://www.spreadfirefox.com


More information about the thelist mailing list