Establishing a connection |
You may establish a secure SSL/TLS connection using the IpClientSsl class. The IpClientSsl class is a subclass of the com.jscape.inet.ipclient.IpClient class making all methods in this class available for use.
Example
// create new IpClientSsl instance IpClientSsl ssl = new IpClientSsl(hostname,port);
// establish a connection ssl.connect(); |