Any updates or further clues on this?
I'm trying to do JMS between two cxf services and hitting the same problem.
I am running cxf-2.2-SNAPSHOT and spring-2.5 (had the same problem with cxf
2.1 and spring 2.0)
Here is what I've got on the consumer side.
<jaxws:endpoint id="HelloWorldServiceJMS"
address="jms://"
serviceName="HelloWorldService"
endpointName="HelloWorldServiceEndpoint"
implementor="com.foo.server.services.hello.HelloWorldServiceImplementation">
<jaxws:features>
<bean class="org.apache.cxf.transport.jms.JMSConfigFeature">
<property name="jmsConfig" ref="jmsConfig"/>
</bean>
</jaxws:features>
</jaxws:endpoint>
And here is what I've got the producer side -
<jaxws:client id="helloWorldService"
serviceName="HelloWorldService"
endpointName="HelloWorldServiceEndpoint" address="jms://"
serviceClass="com.foo.server.interfaces.hello.HelloWorldService">
<jaxws:features>
<bean xmlns="http://www.springframework.org/schema/beans"
class="org.apache.cxf.transport.jms.JMSConfigFeature">
<property name="jmsConfig" ref="jmsConfig"/>
</bean>
</jaxws:features>
</jaxws:client>
in the code I've got:
HelloWorldService service = (HelloWorldService)
this.getBeanFactory().getBean("helloWorldService");
then when I call methods on the service it throws:
Could not find wsdl:binding operation info for web method sayHello.
thanks for any advice,
M.
--
View this message in context:
http://www.nabble.com/CXF-JMS-Asycn-through-Spring-tp20901403p21752334.html
Sent from the cxf-user mailing list archive at Nabble.com.