HttpConnection object

This object is used to connect to Web servers, post data and retrieve information of both text and binary type. This object is accessed via Http property of root object.

Set tcpip=CreateObject("SHOTIP.Connection")
result=tcpip.http.FetchData("http://mysite.dimain.com")

There is the only instance of HttpConnection object in the root object, so the following variables will refer to the same object:

Set h=tcpip.http
Set x=tcpip.http

All methods and properties are listed in the right hand part of the documentation page.