/**
* close http connection
*/
if (hc[i] != null)
{
try {
hc[i].close();
} catch (Exception ex) { }
hc[i] = null;
}
Code Sample 9 HTTPS
22.5 DNS IP
The DNS IP will be flexed on or off (per operator requirement) under Java Settings as
read only or as user-editable. In some instances, it will be flexed with an operator-
specified IP address.
22.6 Push Registry
The push registry mechanism allows an application to register for notification events
that are meant for the application. The push registry maintains a list of inbound con-
nections.
22.7 Mechanisms for Push
Motorola implementation for push requires the support of certain mechanisms. The
mechanisms that will be supported for push are the following:
SMS push: an SMS with a port number associated with an application used to deliver
the push notification.
The formats for registering any of the above mechanisms will follow those detailed in
JSR-118 specification.
Java ME Developer Guide
Chapter 22 - Network APIs
[156/201]
DRAFT - Subject to Change