Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Specifies the URL suffix to connect to the MobiLink server.
void StreamHTTPParms.setURLSuffix(String v)
v The URL suffix string.
UltraLiteJ forms URLs in the following format:
[http|https]://host-name:port-number/url-suffix
By default, url-suffix is "Mobilink/". You can set the URL suffix to the default by setting v to null.
The following code illustrates how to specify a URL suffix that instructs a BlackBerry smartphone to only connect using a Wi-Fi connection:
myHTTPParms.setURLSuffix(";deviceside=true;interface=wifi");
The following code illustrates how to specify a URL that instructs a BlackBerry smartphone to synchronize over the HTTPS protocol with a BlackBerry Enterprise Server (BES), which may be required by some BlackBerry smartphones:
myHTTPParms.setURLSuffix(";EndToEndRequired");