Setting SOAP Headers in Apache CXF – Client
Adding SOAP headers using Apache CXF – Client
ClientProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setServiceClass(SampleService.class);
// Set the web service endpoint URL here
factory.setAddress("http://localhost:8181/cxf/sampleSe...
sachinhandiekar.com1 min read