SendRequest

SendRequest viene utilizzato per inviare la richiesta HTTP avviata. Ad esempio, se in precedenza è stato utilizzato il metodo GetURL, verrà inviata una richiesta GET.

Sintassi

SendRequest()

Valore restituito

Codice risposta HTTP.

Esempio

Lo script eseguirà una richiesta GET e stamperà il codice restituito:

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("/")

'passaggio tramite proxy con autenticazione automatica

'l’autenticazione deve essere impostata su 1

HTTPobj.Authentication = 1

'Invio della richiesta GET

HTTPResponse = HTTPobj.SendRequest()

echo "Risultato: " + cstr(HTTPResponse)

End Function