CXF ws client, dynamic endpoint and loading WSDL from the classpath

CXF ws client, dynamic endpoint and loading WSDL from the classpath

When you allow CXF to create the client code for a webservice (based on the WSDL), this creates code like the following.

@WebServiceClient( name = "IdentityService", targetNamespace = "http://www.prolixproject.org/is",
                   wsdlLocation = "file:/home/joachim/apps/java/ca/pxclient/src/main/wsdl/IdentityService.wsdl" )
public class IdentityService_Service
    extends Service
{
    public final static URL WSDL_LOCATION;
    public final static QName SERVICE = new QName( "http://www.prolixproject.org/is", "IdentityService" );
    public final static QName IdentityServiceImplPort =
        new QName( "http://www.prolixproject.org/is", "IdentityServiceImplPort" );

    static
    {
        URL url = null;
        try
        {
            url = new URL( "file:/home/joachim/apps/java/ca/pxclient/src/main/wsdl/IdentityService.wsdl" );
        }
        catch ( MalformedURLException e )
        {
            System.err.println(
                "Can not initialize the default wsdl from file:/home/joachim/apps/java/ca/pxclient/src/main/wsdl/IdentityService.wsdl" );
            // e.printStackTrace();
        }
        WSDL_LOCATION = url;
    }

    public IdentityService_Service( URL wsdlLocation )
    {
        super( wsdlLocation, SERVICE );
    }

    public IdentityService_Service( URL wsdlLocation, QName serviceName )
    {
        super( wsdlLocation, serviceName );
    }

    public IdentityService_Service()
    {
        super( WSDL_LOCATION, SERVICE );
    }

    /** @return returns IdentityService */
    @WebEndpoint( name = "IdentityServiceImplPort" )
    public IdentityService getIdentityServiceImplPort()
    {
        return super.getPort( IdentityServiceImplPort, IdentityService.class );
    }

    /**
     * @param features A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the features parameter will have their default values.
     * @return returns IdentityService
     */
    @WebEndpoint( name = "IdentityServiceImplPort" )
    public IdentityService getIdentityServiceImplPort( WebServiceFeature... features )
    {
        return super.getPort( IdentityServiceImplPort, IdentityService.class, features );
    }
}

This code represents two challenges.

  • The WSDL is loaded from the filesystem. While the location may be fine during development. It will likely fail once deployed.
  • The service endpoint is fixed. Depending on the deployment, this should be configurable (typically it will be different for testing and production).

The first problem seems weird. As the WSDL was needed to create the classes to access the service, why is it still needed at runtime? Apparently, this can be used for handling additional information which is allowed to change, typically extra header information like authentication.

As not all services provide the WSDL online, and you don’t want the WSDL to be searched on the file system (as this would require putting it in a specific location and assuring the location is also known in the application), the classpath sounds like the normal place to put this. If only “classpath:” URL’s would be supported. There is a solution using the classloader to supply the URL though (see code).

The next problem is that the WSDL defined the service endpoint location, but deployment may require this to be different in some cases. This is fixed by allowing the endpoint location to be overridden by a system property.

The client code (with some cleanup) then looks like this.

@WebServiceClient( name = "IdentityService", targetNamespace = "http://www.prolixproject.org/is",
                   wsdlLocation = "file:/home/joachim/apps/java/ca/pxclient/src/main/wsdl/IdentityService.wsdl" )
public class ProlixSso
    extends Service
{
    public final static URL WSDL_LOCATION;
    public final static QName SERVICE = new QName( "http://www.prolixproject.org/is", "IdentityService" );
    public final static QName IDENTITY_SERVICE_IMPL_PORT =
        new QName( "http://www.prolixproject.org/is", "IdentityServiceImplPort" );

    static
    {
        ClassLoader cl = Thread.currentThread().getContextClassLoader();
        if ( null == cl ) cl = ProlixSso.class.getClassLoader();
        WSDL_LOCATION = cl.getResource( "be/progs/ca/pxclient/wsdl/IdentityService.wsdl" );
    }

    public ProlixSso()
    {
        super( WSDL_LOCATION, SERVICE );
    }

    /** @return returns IdentityService */
    @WebEndpoint( name = "IdentityServiceImplPort" )
    public IdentityService getIdentityServiceImplPort()
    {
        IdentityService proxy = super.getPort( IDENTITY_SERVICE_IMPL_PORT, IdentityService.class );
        ( (BindingProvider) proxy ).getRequestContext().put( BindingProvider.ENDPOINT_ADDRESS_PROPERTY, getUrl() );
        return proxy;
    }

    /**
     * @param features A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy.  Supported features not in the features parameter will have their default values.
     * @return returns IdentityService
     */
    @WebEndpoint( name = "IdentityServiceImplPort" )
    public IdentityService getIdentityServiceImplPort( WebServiceFeature... features )
    {
        IdentityService proxy = super.getPort( IDENTITY_SERVICE_IMPL_PORT, IdentityService.class, features );
        ( (BindingProvider) proxy ).getRequestContext().put( BindingProvider.ENDPOINT_ADDRESS_PROPERTY, getUrl() );
        return proxy;
    }

    private static String getUrl()
    {
        String res = System.getProperty( "ca.prolix.identityservice.url" );
        if ( null == res ) res = "http://testportal.prolix-dev.de/prolixservices/jbi/IdentityService/";
        return res;
    }
}
内容概要:本文深入探讨了多种高级格兰杰因果检验方法,包括非线性格兰杰因果检验、分位数格兰杰因果检验、混频格兰杰因果检验以及频域因果检验。每种方法都有其独特之处,适用于不同类型的时间序列数据。非线性格兰杰因果检验分为非参数方法、双变量和多元检验,能够在不假设数据分布的情况下处理复杂的关系。分位数格兰杰因果检验则关注不同分位数下的因果关系,尤其适合经济数据的研究。混频格兰杰因果检验解决了不同频率数据之间的因果关系分析问题,而频域因果检验则专注于不同频率成分下的因果关系。文中还提供了具体的Python和R代码示例,帮助读者理解和应用这些方法。 适合人群:从事时间序列分析、经济学、金融学等领域研究的专业人士,尤其是对非线性因果关系感兴趣的学者和技术人员。 使用场景及目标:①研究复杂非线性时间序列数据中的因果关系;②分析不同分位数下的经济变量因果关系;③处理不同频率数据的因果关系;④识别特定频率成分下的因果关系。通过这些方法,研究人员可以获得更全面、细致的因果关系洞察。 阅读建议:由于涉及较多数学公式和编程代码,建议读者具备一定的统计学和编程基础,特别是对时间序列分析有一定了解。同时,建议结合具体案例进行实践操作,以便更好地掌握这些方法的实际应用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值