javax.net.ssl.SSLException: SSL handshake aborted Connection reset by peer while calling webservice Android

I also got the same exception. I found that it was due to TLS 1.0 protocol was not supported by server.

I observed that Android device, http connection fails to the server where TLS 1.0 is not supported. I searched every where about the bug, but did not find anything related to this problem. And the problem was solved, when the TLS 1.0 protocol support was added to the server.You can check your server / hostname protocol support using https://www.ssllabs.com/ssltest.

Leave a Comment