1

我想访问 Web 服务,代码如下所示:

URL url = new URL("http://localhost:8080/sample?ver_=1.0");

QName qname = new QName("http://webservices.sample.com/sample", "sample");

javax.xml.ws.Service service = javax.xml.ws.Service.create(url, qname);

初始化“服务”的行会抛出 401 Unauthorized 异常。

如果我访问

http://localhost:8080/sample?ver_=1.0 

使用浏览器,会弹出一个要求输入用户名和密码的窗口。

我尝试使用 Wireshark 捕获数据包,并注意到服务的构造函数将 HTTP Get 发送到 IP 地址但没有凭据。

如何确保服务构造函数对 HTTP Get 的调用包含用户名/密码?

我已经尝试在通话之前将其放入,但没有帮助

Authenticator.setDefault(new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
"username",
"password".toCharArray());
}
});

谢谢!

4

1 回答 1

0

您需要获取服务端点。使用端点获取 requestContext 并添加身份验证标头,这里是示例代码,根据您的 Web 服务和身份验证凭据对其进行修改。

Example example = service .getXXXPort();

Map<String, Object> req_ctx = ((BindingProvider)example).getRequestContext();
req_ctx.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "your web service URL here");

Map<String, List<String>> headers = new HashMap<String, List<String>>();
headers.put("Username", Collections.singletonList("username"));
headers.put("Password", Collections.singletonList("password"));
req_ctx.put(MessageContext.HTTP_REQUEST_HEADERS, headers);
于 2013-05-20T07:10:40.147 回答