我正在尝试通过 Eclipse 中的 java 程序使用从 wsdl 生成的客户端连接到 Web 服务。我通过代理服务器传递我的请求。但似乎该请求没有通过。相同的代理设置在 SoapUI 上运行良好。请在下面找到我设置的系统属性。
Properties props= new Properties(System.getProperties());
props.put("http.proxySet", "true");
props.put("http.proxyHost", "10.x.x.x");
props.put("http.proxyPort", "80");
props.put("http.proxyUser","domainName\\xxx");
props.put("http.proxyPassword","xxx");
Properties newprops = new Properties(props);
Java程序抛出异常为java.net.UnknownHostException:
我错过了什么?