Java Web Start: Unable to tunnel through proxy since Java 8 Update 111

后端 未结 4 660
后悔当初
后悔当初 2020-12-09 10:13

Some of our customers cannot run our Java Web Start client anymore since Java 8 Update 111. They get:

java.io.IOException: Unable to tunnel through pr

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-09 10:46

    If you require to do this at runtime you can set the value of the jdk.http.auth.proxying.disabledSchemes property by adding

    System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");
    

    to the main method of your application.

提交回复
热议问题