Example usage for org.springframework.remoting.jaxws JaxWsPortProxyFactoryBean afterPropertiesSet

List of usage examples for org.springframework.remoting.jaxws JaxWsPortProxyFactoryBean afterPropertiesSet

Introduction

In this page you can find the example usage for org.springframework.remoting.jaxws JaxWsPortProxyFactoryBean afterPropertiesSet.

Prototype

@Override
    public void afterPropertiesSet() 

Source Link

Usage

From source file:com.sybase365.mobiliser.custom.project.client.WeatherTargetSource.java

@Override
protected WeatherSoap instantiate() {

    final ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();

    try {/* w w w.  j  a va 2s  . c  om*/
        Thread.currentThread().setContextClassLoader(this.classLoader);

        final JaxWsPortProxyFactoryBean jaxWsProxyFactory = new JaxWsPortProxyFactoryBean();
        jaxWsProxyFactory.setBeanClassLoader(this.classLoader);
        jaxWsProxyFactory.setServiceInterface(WeatherSoap.class);
        jaxWsProxyFactory.setServiceName("WeatherSoap");
        jaxWsProxyFactory.setEndpointAddress(
                this.node.get("service.url", "http://wsf.cdyne.com/WeatherWS/Weather.asmx"));
        jaxWsProxyFactory.afterPropertiesSet();

        return (WeatherSoap) jaxWsProxyFactory.getObject();
    } finally {
        Thread.currentThread().setContextClassLoader(contextClassLoader);
    }

}