Exception : javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated

前端 未结 7 2348
时光取名叫无心
时光取名叫无心 2020-12-08 06:06
public HttpClientVM() {

    BasicHttpParams params = new BasicHttpParams();
    ConnManagerParams.setMaxTotalConnections(params, 10);
    HttpProtocolParams.setVers         


        
7条回答
  •  天命终不由人
    2020-12-08 06:39

    This can also happen if you are attempting to connect over HTTPS and the server is not configured to handle SSL connections correctly.

    I would check your application servers SSL settings and make sure that the certification is configured correctly.

提交回复
热议问题