Jul 24, 2010

Java Accessing WSDL via HTTPS SSL

For along time i tried to make it accessible as easy as HTTP, but i 've got trouble many times, i tried 6 different access mechanism to use this service. and now i solved the problem with this : String address = ServicePoint.WSDL_LOCATION.toString(); JaxWsProxyFactoryBean proxyFactory = new JaxWsProxyFactoryBean(); proxyFactory.setServiceClass(ServicePointPortType.class); proxyFactory.setAddress(address);...
Read more ...