2

我正在尝试访问我正在处理的项目的 Web 服务。我正在使用 JAX-WS 并且该应用程序部署在 weblogic 上。当我尝试访问 WS 时,出现以下异常:

javax.portlet.PortletException: javax.xml.ws.WebServiceException: Failed to access the WSDL at: http://xxx.xxxx.ro:40000/idm/ws/cup?wsdl. It failed with: 
Response: '401: Unauthorized' for url: 'http://xxx.xxxx.ro:40000/idm/ws/cup?wsdl'.
at com.bea.portlet.container.PortletStub.processAction(PortletStub.java:346)
at com.bea.portlet.container.AppContainer.invokeProcessAction(AppContainer.java:678)
........

我阅读了很多关于问题的帖子,并尝试了不同类型的身份验证。我尝试在不同的用例中使用 BindingProvider、basicHTTPAuth、禁用 HostnameVerifier 等,但仍然没有结果。

以下是我的代码片段,作为最后一次尝试的版本:

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


    ComputeUserProfileImplService computeUserProfileImplService = new ComputeUserProfileImplService(
    new URL(null, endpointURL, new sun.net.www.protocol.http.Handler()),
    new QName("http://xxx.xx.xxxxx.xxxxx.com/",
            "ComputeUserProfileImplService"));
    ComputeUserProfileImpl computeUserProfile = computeUserProfileImplService
    .getComputeUserProfileImplPort();

ComputeUserProfileImplService 代码如下所示:

private final static URL COMPUTEUSERPROFILEIMPLSERVICE_WSDL_LOCATION;
private final static Logger logger = Logger.getLogger(com.xxxxx.xxxxx.xx.xxxxx.cup.ComputeUserProfileImplService.class.getName());

static {
    URL url = null;
    try {
        URL baseUrl;
        baseUrl = com.xxxxx.xxxxx.xx.xxxxx.xxx.ComputeUserProfileImplService.class.getResource("");
        url = new URL(baseUrl, "http://xxxx.xxxxx.ro:40000/idm/ws/cup?wsdl");

    } catch (MalformedURLException e) {
        logger.warning("Failed to create URL for the wsdl Location: 'xxxxxxxxxxxxxxxx', retrying as a local file");
        logger.warning(e.getMessage());
    }
    COMPUTEUSERPROFILEIMPLSERVICE_WSDL_LOCATION = url;
}

很抱歉替换链接,但我无权发布它们,因为它是一个非常知名的组织。如果你能帮助我提出一些建议,我将不胜感激。我一直在寻找解决方案,但我被卡住了..我想不通。它应该是适用于我的这个 weblogic 问题的解决方法......但我只是找不到它。如果你需要它,我会发布一些其他的片段。希望我对此很清楚。

提前致谢 !!

4

4 回答 4

5

不幸的是,Weblogic 有一种不同的方法,它使用自己的 URLStreamHandler,由于某种原因忽略了身份验证。

尝试使用 Sun 的实现:

代替

 url = new URL(address); // use WebLogic handler

采用

 url = new URL(null, address, new sun.net.www.protocol.http.Handler()); // use Sun's handler
于 2012-09-11T08:58:58.693 回答
4

我在 Weblogic 中遇到了同样的问题。我可以向您确认 Paulius Matulionis 建议的解决方案在 Weblogic 11 中对我有用:

import my.MyPortType;

import javax.xml.namespace.QName;
import javax.xml.ws.BindingProvider;
import javax.xml.ws.Service;
import javax.xml.ws.handler.MessageContext;
import java.net.Authenticator;
import java.net.MalformedURLException;
import java.net.PasswordAuthentication;
import java.net.URL;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class MyWebServiceClient {

    public static void main(String[] args) {
        URL url = null;
        try {
            url = new URL("http://host:10001/mycontext/ws?WSDL");
        } catch (MalformedURLException e) {
            e.printStackTrace();
        }

        try {
            final String username = "some";
            final String password = "other";
            Authenticator.setDefault(new Authenticator() {
                @Override
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(
                            username,
                            password.toCharArray());
                }
            });
            QName qname = new QName("http://whatevertheqname/", "whatevertheservicename");
            Service service = Service.create(url, qname);
            MyPortType proxy = service.getPort(MyPortType.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>>();
            headers.put("Timeout", Collections.singletonList("10000"));
            requestContext.put(MessageContext.HTTP_REQUEST_HEADERS, headers);
            String result = proxy.myMethod23");

            System.out.println("Result is: " + result);

        } catch (Exception e) {
            e.printStackTrace();
            throw new RuntimeException("Error occurred in operations web service client initialization", e);
        }


    }
}
于 2012-10-29T18:50:37.773 回答
2

我没有在 WebLogic 中尝试过,但是在 Tomcat、Glassfish、Apache Karaf 上,对需要基本身份验证的 Web 服务的 cliet 调用非常有效:

/**
 * Proxy.
 */
private OperationsService proxy;

/**
 * Operations wrapper constructor.
 *
 * @throws SystemException if error occurs
 */
public OperationsWrapper()
        throws SystemException {
    try {
        final String username = getBundle().getString("wswrappers.operations.username");
        final String password = getBundle().getString("wswrappers.operations.password");
        Authenticator.setDefault(new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(
                        username,
                        password.toCharArray());
            }
        });
        URL url = new URL(getBundle().getString("wswrappers.operations.url"));
        QName qname = new QName("http://hltech.lt/ws/operations", "Operations");
        Service service = Service.create(url, qname);
        proxy = service.getPort(OperationsService.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>>();
        headers.put("Timeout", Collections.singletonList(getBundle().getString("wswrappers.operations.timeout")));
        requestContext.put(MessageContext.HTTP_REQUEST_HEADERS, headers);
    } catch (Exception e) {
        LOGGER.error("Error occurred in operations web service client initialization", e);
        throw new SystemException("Error occurred in operations web service client initialization", e);
    }
}

我不认为 WebLogic 有什么不同。这应该有效。

于 2012-08-11T12:50:39.033 回答
0

以下是可以解决您的问题的建议:

1) 更改 WEBLOGIC 脚本 setDomainEnv.sh 以强制 WEBLOGIC 使用SunHttpHandler.

或者

2) 使用 shell 脚本/批处理文件从命令提示符调用 web 服务。

或者

3) 在您的网络服务中尝试这个 url 对象new URL(null, "http://...", new sun.net.www.protocol.http.Handler());

或者

4) 编写自己的 sun http 处理程序。

或者

5) 尝试通过在其中添加新创建的 web 服务来更新 weblogic-webservice.xml。

或者

6) 尝试使用 jax-rpc 而不是 jax-ws。

希望前两个中的任何一个都可以解决您的问题,但是其他选项也很有帮助。

于 2015-08-11T13:07:26.037 回答