5

我有WSDL。我需要进行HTTP基本(抢先式)身份验证。该怎么办?

我试过 :

Authenticator myAuth = new Authenticator() {
    @Override
    protected PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication("user", "pass".toCharArray());
    }
};
Authenticator.setDefault(myAuth);

但它不起作用: 原因:

java.io.IOException:服务器返回 HTTP 响应代码:401 for URL ..

PS 我使用 Apache CXF 2.6.2 和 JBoss 5.0.1

4

1 回答 1

16

您为身份验证指定的内容还不够。你应该这样做:

private YourService proxy;

public YourServiceWrapper() {
    try {
        final String username = "username";
        final String password = "password";
        Authenticator.setDefault(new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(
                        username,
                        password.toCharArray());
            }
        });
        URL url = new URL("http://yourserviceurl/YourService?WSDL");
        QName qname = new QName("http://targetnamespace/of/your/wsdl", "YourServiceNameInWsdl");
        Service service = Service.create(url, qname);
        proxy = service.getPort(YourService.class);
        Map<String, Object> requestContext = ((BindingProvider) proxy).getRequestContext();
        requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, url.toString());
        requestContext.put(BindingProvider.USERNAME_PROPERTY, username);
        requestContext.put(BindingProvider.PASSWORD_PROPERTY, password);
        Map<String, List<String>> headers = new HashMap<String, List<String>>();
        requestContext.put(MessageContext.HTTP_REQUEST_HEADERS, headers);
    } catch (Exception e) {
        LOGGER.error("Error occurred in web service client initialization", e);
    }
}

特性:

  1. YourService - 您生成的 Web 服务客户端接口。
  2. YourServiceWrapper() - 初始化服务的包装类构造函数。
  3. url - 带有?WSDL扩展名的 Web 服务的 URL。
  4. qname - 第一个构造函数参数:WSDL文件中的目标命名空间。第二:您的服务名称来自WSDL.

然后您将能够像这样调用您的 Web 服务方法:

proxy.whatEverMethod();
于 2012-10-15T11:31:48.163 回答