I working on JBoss Fuse, I want to put my SOAP request in Active MQ Queue. After putting SOAP request in Queue I want a response sent back to my SOAP request.
Sample Code snippet: Below is my camel context, i have replace < > with ( ) (cxf:cxfEndpoint address="http://localhost:8181/cxf/hello" id="SOAPInput" serviceClass="com.ws.demo.HelloWorld"/) (bean class="com.ws.demo.SoapResProcessor" id="soapResProcessor"/) (camelContext id="camelContext" xmlns="http://camel.apache.org/schema/spring") (route id="route1" streamCache="true") (from id="sampleFrom" uri="cxf:bean:SOAPInput? dataFormat=PAYLOAD&exchangePattern=InOut"/) (when id="whenBatch") (xpath)starts-with(substring-after((/v1:processMessageRequest/name/text()), 'DEST_NAME='), "Sample")(/xpath)`enter code here` (to id="toSampleQ" uri="activemq:queue:SAMPLEQ?jmsMessageType=Text"/) (process id="soapResProcess" ref="soapResProcessor"/) (/when) -- View this message in context: http://camel.465427.n5.nabble.com/Active-MQ-Put-Soap-Request-in-Active-MQ-and-get-back-SOAP-response-tp5797816.html Sent from the Camel - Users mailing list archive at Nabble.com.
