HTTPVersion
Determina la versione HTTP. Se non impostato, HTTPVersion sarà “HTTP/1.1”
Sintassi
HTTPObject.HTTPVersion
Dove:
HTTPVersion
è una stringa (esempio:HTTP/1.1
)
Esempio
Lo script invierà una richiesta HTTP/1.0:
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.Authentication = 1
HTTPobj.HTTPVersion = "HTTP/1.0"
'Invio della richiesta GET con intestazioni personalizzate
HTTPResponse = HTTPobj.SendRequest ()
echo HTTPobj.RawResponseHeaders
End Function