|
|
温暖的牛排 · win10蓝屏问题查找,以及TLS 客户端 ...· 2 年前 · |
|
|
聪明伶俐的水龙头 · c# - How do I prevent ...· 2 年前 · |
|
|
销魂的小熊猫 · javascript - ...· 2 年前 · |
|
|
知识渊博的柠檬 · 连接复原 - ODBC Driver ...· 2 年前 · |
Hi arun,
Try this prior to creating the SoapBindingStub instance:
Properties props= new Properties(System.getProperties());
props.put("https.proxySet", "true");
props.put("https.proxyHost", "localhost");
props.put("https.proxyPort", "8082");
Properties newprops = new Properties(props);
System.setProperties(newprops);
Of course, change localhost to your proxy host and the port to your proxy host port.