What does your spring config look like? Can you create a small example that shows it now working? Maybe take a hello world?
Also, have you tried using the "jaxws:client" element in the spring config instead of actually configuring a factory? Dan On Monday 08 December 2008 1:58:55 pm cxfuser17 wrote: > 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? -- Daniel Kulp [EMAIL PROTECTED] http://dankulp.com/blog
