SSL handshake aborted - what is the exact reason?

后端 未结 1 1115
春和景丽
春和景丽 2021-01-19 19:28

While trying to establish a HTTPS connection, I get back an IOException:

SSL handshake aborted: ssl=0x519ea2d8: I/O error during system call, Connection rese         


        
相关标签:
1条回答
  • 2021-01-19 19:55

    Connection reset by peer

    This means that the server has closed the connection because it did not like what you have send to it. There are too few details to find out what really is going on but it might be the wrong protocol version, wrong ciphers etc in which case you might find more information on the server side. But it might also be a firewall in between cutting the connection because it violates the firewall policy. If you have another client which can successfully connect make a packet capture of both and compare.

    0 讨论(0)
提交回复
热议问题