SSLException: HelloRequest followed by an unexpected handshake message

前端 未结 4 1560
慢半拍i
慢半拍i 2021-02-14 03:18

I\'m trying to connect to a webservice over SSL using Apache Commons HttpClient 3.1, using this:

String url = \"https://archprod.service.eogs.dk/cvronline/esb/Le         


        
4条回答
  •  甜味超标
    2021-02-14 03:24

    We have a webstart application which fails because of this issue. The command-line version is working again when adding :

    java.lang.System.setProperty("sun.security.ssl.allowUnsafeRenegotiation", "true");

    But the webstart version seems to ignore this, and until now we haven't foud a way to set this property in the webstart version.

提交回复
热议问题