Connect

Connect viene utilizzato per impostare il nome host o l’indirizzo IP e la porta del server HTTP nell’oggetto.

Sintassi

HTTP.Connect (STRING hostname, LONG port)

Dove:

  • Hostname: può essere l’indirizzo IP o il nome host (esempio: 192.168.11.11 o www.gfi.com)
  • Porta: un numero intero compreso tra 1 e 65535
Restituisce

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

' passare attraverso il 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