I have ws as entry point, but my ws is not being called when I send a soap
message.
How I do send an object web service call to jms queue and then process
object from the queue?

Here is the detail

String cxfEndpoint = "cxf:/ServiceWSPort" 
                + "?serviceClass=com.ServiceWS" 
                + "&wsdlURL=wsdl/servicews.wsdl"; 
        from(cxfEndpoint).to("jms:queueServiceQueue"); 
        
        from("jms:queue:ServiceQueue").process(new ServiceProcessor()); 


<bean id="activemq"
class="org.apache.activemq.camel.component.ActiveMQComponent" >
     <property name="brokerURL" value="tcp://localhost:61616"/>
   </bean>
    
    
    <bean id="myRoute" class="test.MyTest"/>
      
    <camelContext xmlns="http://camel.apache.org/schema/spring";
depends-on="activemq">
        
        <routeBuilder ref="myRoute"/>
        
   </camelContext>

--
View this message in context: 
http://camel.465427.n5.nabble.com/Help-Cfx-ws-endpoint-to-JMS-not-Working-tp5714073.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to