Hi Team, I am trying to configure camel multicasting in my project. The requirement is to hit multiple services in parallel and consume the response. When I tried, am getting the response in body of the second service alone. Am not able to get the response of the first service. Please help me on this.
I have the configuration file as below. <route> <from uri="direct:signIn" /> <log message="****************Sign ON Request Fired************" /> <multicast parallelProcessing="true"> <pipeline> <bean ref="signOnRequestHandler" /> <to uri="cxfrs://bean://signOnRsClient"/> </pipeline> <pipeline> <bean ref="signOnRequestHandler1" /> <to uri="cxfrs://bean://signOnRsClient1"/> </pipeline> </multicast> <unmarshal ref="jack"/> <bean ref="signOnResponseHandler" /> </route> Thanks, Bala -- View this message in context: http://camel.465427.n5.nabble.com/Camel-multicast-configuration-file-tp5723427.html Sent from the Camel - Users mailing list archive at Nabble.com.