StreamHTTPParms interface

Represents HTTP stream parameters that define how to communicate with a MobiLink server using HTTP.

Syntax
public StreamHTTPParms
Derived classes
Remarks

The following example sets the stream parameters to communicate with a MobiLink 11 server on host name "MyMLHost". The server started with the following parameters: "-xo http(port=1234)":

SyncParms syncParms = myConnection.createSyncParms(
    SyncParms.HTTP,
    "MyUniqueMLUserID",
    "MyMLScriptVersion"
);
StreamHTTPParms httpParms = syncParms.getStreamParms();
httpParms.setHost("MyMLHost");
httpParms.setPort(1234);

Instances implementing this interface are returned by the getStreamParms function method.

Members

All members of StreamHTTPParms, including all inherited members.


getHost function
getOutputBufferSize function
getPort function
getURLSuffix function
setHost function
setOutputBufferSize function
setPort function
setURLSuffix function