Is there a way to perform an HTTP GET request within a Visual Basic script? I need to get the contents of the response from a particular URL for processing.
Thanks.
|
feedback
|
| |||
|
feedback
|
|
You haven't at time of writing described what you are going to do with the response or what its content type is. An answer already contains a very basic usage of The XMLHTTP also has a Note that in a server-side requirement (e.g., VBScript hosted in ASP) you would use Here is an example of using XmlHttp to fetch a PDF file and store it:-
| |||
|
feedback
|
|
If you are using the GET request to actually SEND data... check: http://techhelplist.com/index.php/tech-tutorials/37-windows-troubles/60-vbscript-sending-get-request The problem with MSXML2.XMLHTTP is that there are several versions of it, with different names depending on the windows os version and patches. this explains it: http://support.microsoft.com/kb/269238 i have had more luck using vbscript to call
....and more stuff but just to let the request go thru. | |||
|
feedback
|