class Local . HTTPget {
int32 bytesIn;
oid clientObj;
oid connObj;
int32 eofEncountered;
string response;
} inherits from Object;
The class HTTPget is a convenience class that performs simple HTTP 1.0 GET requests. It has been superseded by the class HTTPrequest and HTTPget should no longer be used by new applications. The intent is to ultimately remove support for HTTPget; as an initial step, it has been removed from the Standard namespace and placed into the Local namespace. Existing usage should be modified as demonstrated below:
obj = send "createObject"("HTTPget", acl, url, host, port, client) to ObjectCreator; should become: obj = send "createObject"("HTTPrequest", acl, "GET", url, host, port, client, "", "") to ObjectCreator;
HTTPget:create(string url, string host, string port, oid client)