Basic authentication problem in version 1.4.8.126 (General questions)
VB Code:
...
With http
.Authentication = AuthBasic
.Login = user
.Password = password
.DebugFile = c: race.txt
.Get myurl
End With
Response.body = <h1>Bad Request (Invalid Verb)</h1>
Trace.txt:
** Connecting to ... on port 80
** Requesting URL http://...
Authorization: Basic cGxp...
GET /... HTTP/1.1
Host: myserver
HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Wed, 20 Dec 2006 12:43:11 GMT
Connection: close
Content-Length: 35
<h1>Bad Request (Invalid Verb)</h1>** Done receiving response
Thanks