Login | |
|
 |
RE: CreateObject("Microsoft.XMLHTTP") - 10/25/2007 5:58:20 AM
|
|
 |
|
| |
DiGiTAL.SkReAM
Posts: 1194
Score: 7
Joined: 9/6/2005
From: Florida, USA
Status: offline
|
quote:
ORIGINAL: jbb9665 How does one use CreateObject("Microsoft.XMLHTTP") to log in to a web site that requires credentials, move to a particular web page at the site and pull back the contents of the page? Thank you. Very carefully. You're welcome.
_____________________________
"Would you like to touch my monkey?" - Dieter (Mike Meyers) "It is better to die like a tiger, than to live like a pussy." -Master Wong, from Balls of Fury
|
|
| |
|
|
|
 |
RE: CreateObject("Microsoft.XMLHTTP") - 10/27/2007 7:52:22 PM
|
|
 |
|
| |
DiGiTAL.SkReAM
Posts: 1194
Score: 7
Joined: 9/6/2005
From: Florida, USA
Status: offline
|
This was the first response I got when I googled "vbscript xmlhttp": http://www.paulsadowski.com/WSH/xmlhttp.htm
_____________________________
"Would you like to touch my monkey?" - Dieter (Mike Meyers) "It is better to die like a tiger, than to live like a pussy." -Master Wong, from Balls of Fury
|
|
| |
|
|
|
 |
RE: CreateObject("Microsoft.XMLHTTP") - 10/2/2008 10:53:04 AM
|
|
 |
|
| |
Roshan2008
Posts: 2
Score: 0
Joined: 10/1/2008
Status: offline
|
Hi, I am trying to achive the samething.. I have post my question here.. http://www.visualbasicscript.com/m_64707/tm.htm To login to a website use the following xml.Open "GET", "http://test", False,"USERID","PASSW0RD" xml.Send To select a Link on the site which will transfer you to that page, simplay access that link xml.Open "GET", "http://test/private/login.ssi?WEBINDEX=3&JUNK=1", False,"USERID","PASSW0RD" xml.Send What I am stuck is on Sumbiting a form.. This just errors xml.Open "POST", "http://test/private/login.ssi?WEBINDEX=3&JUNK=1", False xml.Send "loginid=USERIDTEST&pw=PASSW0RD&confirmpw=PASSW0RD"
|
|
| |
|
|
|
|
|