Justis
August 30th, 2002, 06:16 AM
i'm using the following code to create a SSLServerSocket, and i get an IOException on runtime. i've used all sorts of port number, and it failed with them all.
SSLServerSocketFactory factory = (SSLServerSocketFactory)
SSLServerSocketFactory.getDefault();
try{
m_ss = (SSLServerSocket) factory.createServerSocke
(SOCK_PORT);
}
catch(UnknownHostException e){
return false;
}
thanks for your time,
justis
SSLServerSocketFactory factory = (SSLServerSocketFactory)
SSLServerSocketFactory.getDefault();
try{
m_ss = (SSLServerSocket) factory.createServerSocke
(SOCK_PORT);
}
catch(UnknownHostException e){
return false;
}
thanks for your time,
justis