ProxyUser
Nome utente per l’autenticazione proxy.
Sintassi
HTTPObject.ProxyUser
Dove:
ProxyUser
è una stringa (lettura/scrittura)
Esempio
Lo script seguirà una richiesta GET e stamperà il codice restituito. Imposta nome utente e password come LanGuard_test
:
Function Main
Dim HTTPObj as Object
ip = "www.gfi.com"
port = 80
Set HTTPobj = HTTP.Connect (ip,port)
'impostazione del tipo di richiesta
HTTPobj.GetURL("/")
HTTPobj.ProxyUser = "LanGuard_test"
HTTPobj.Proxypassword = "LanGuard_test"
'Invio della richiesta GET
HTTPResponse = HTTPobj.SendRequest ()
echo HTTPobj.Body
End Function