|
|
威武的香菇 · Trying to debug PHP ...· 2 年前 · |
|
|
闷骚的山羊 · 最全的MySQL时间函数总结-51CTO.COM· 2 年前 · |
|
|
乖乖的泡面 · mysql 视图中使用变量 ...· 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.