Secure Pop3 via TCP implementation

I am trying to make secure pop3 connection via tcp implementation but getting SSL exception

Code used is

  ServerSocketFactory ssocketFactory = SSLServerSocketFactory.getDefault();   SSLServerSocket ListenSocket = (SSLServerSocket) ssocketFactory.createServerSocket(995);   

Can you please assist what I am missing here?

Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.