如何为本地文件指定wsdlLocation

时间:2019-07-19 16:42:02

标签: java web-services wsdl jax-ws

我是Web服务客户端游戏的新手,并且已经使用wsdl2java maven依赖项生成了代码。

我正在将该项目打包为.war文件。

我的问题是我不知道如何使自动生成的客户端跨域到达端点,并且我也不知道如何正确设置客户端的wsdlLocation。

从后者开始: 在自动生成的服务类中,我发现了一个static URL WSDL_LOCATION属性以及“ parameters?”到WebServiceClient注释。

@WebServiceClient(name = "my_service", 
                  wsdlLocation = "file:/c:/tmp/my_service.wsdl",
                  targetNamespace = "someAutoGenTargetNS/wsdl") 
public class my_service_Service extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("someAutoGenTargetNS/wsdl", "my_service");
    public final static QName my_service = new QName("http://someAtuoGenTargetNS/wsdl", "my_service");
    static {
        URL url = null;
        try {
            url = new URL("file:/c:/tmp/my_service.wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(my_service_Service.class.getName())
                .log(java.util.logging.Level.INFO, 
                     "Can not initialize the default wsdl from {0}", "file:/c:/tmp/my_service.wsdl");
        }
        WSDL_LOCATION = url;
    }

当前,WSDL_LOCATION url始终设置为null,因为它找不到指定的文件路径(这是预期的)。我将wsdl和xsd存储在resources文件夹中,但是不知道如何指定达到该路径的路径。我尝试过

new URL("file:/resources/my_service.wsdl")
new URL("file:/src/main/java/resources/my_service.wsdl")
new URL("classpath:my_service.wsdl")

以及其他一些。正确的方法是什么,如果需要xml目录,我在哪里可以找到有关将catalog.xml文件放在何处的文档。

现在是前者: 我相信将端点更改为所需位置的实现是正确的,而wsdlLocation问题使我头疼。这是我更改端点的实现。如果这样看起来不对,只需指出使用方向即可,无需全面实现。

private static final QName SERVICE_NAME = new QName(""someAutoGenTargetNS/wsdl"", "my_service");
    private URL wsdlURL = my_service_Service.WSDL_LOCATION;
    my_service_Service ss;
    my_service port;
public my_service_client()
{
        //Redacted code for trusting all SSL Certs and hostnameVerifiers as it is not needed for the scope of this question
        this.ss = new my_service_Service(this.wsdlURL,SERVICE_NAME);
        this.port = ss.getMy_Service();
        BindingProvider bp = (BindingProvider) this.port;
        Map<String,Object> clientRequestContext = bp.getRequestContext();
        clientRequestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "https://New_Endpoint_IP");
//Basic auth header credentials
        clientRequestContext.put(BindingProvider.USERNAME_PROPERTY,"username");
        clientRequestContext.put(BindingProvider.PASSWORD_PROPERTY,"password");
}

在问这个问题之前,我试图了解的资源:

1 2 3 4 5 6 7+ 8

最终,我开始意识到我更希望使用HTTP而不是SOAP,但是遗留系统需要遗留交互。

收到错误消息后,我认为这是wsdlURL问题:

javax.xml.ws.soap.SOAPFaultException: Internal Error (from client)
org.apache.cxf.binding.soap.SoapFault: Internal Error (from client)

1 个答案:

答案 0 :(得分:0)

找出问题所在(4天后跟踪问题,在这里提出问题后我很快就可以解决...)

这确实是设置端点URL的有效方法。回答了这个问题。

我从reference开始采用了classLoader.getResource方法来设置wsdlLocation

我的新代码变为:

@WebServiceClient(name = "my_service", 
                  wsdlLocation = "classpath:my_service.wsdl",
                  targetNamespace = "someAutoGenTargetNS/wsdl") 
public class my_service_Service extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("someAutoGenTargetNS/wsdl", "my_service");
    public final static QName my_service = new QName("http://someAtuoGenTargetNS/wsdl", "my_service");
    static {
        URL url = null;
            url = my_service.class.getClassLoader().getResource("my_service.wsdl");
        WSDL_LOCATION = url;
    }

最后,我意识到我尝试利用的最基本的Web服务调用错误地设置了请求正文。我已将request_body设置为null,而不是实例化自动生成的请求类的新实例。这就是引发这两个错误的原因,但是我敢肯定,解决上述问题有助于加强对这些部分如何协同工作的理解,从而将我引向解决方案。