I am trying to call a cxf webservice via JMS through spring asynchronously.
When I add the jms:address to the wsdl and programatically create my client it works fine. However, when I try to create the client via the JaxWsProxyFactoryBean class through spring, only the synchronous method works; test(requestObj). The testAsync(requestObj) and testAsync(requestObj, callback) both throw an error stating "could not find wsdl:binding operation info for web method testAsync". From debuging the source code, I think it has something to do with the way the JaxWsProxyFactoryBean is configured through spring. When creating the client programitcally by calling TestWS = new TestWS_Service().getTestWSBindingPort(). I have noticed that it ends up instantiating its own JaxWsProxyFactoryBean, so I think there is something I am missing in my spring config file. Has anyone been able to get the JMS Async configured through Spring? Thanks! -Chris -- View this message in context: http://www.nabble.com/CXF-JMS-Asycn-through-Spring-tp20901403p20901403.html Sent from the cxf-user mailing list archive at Nabble.com.
