I am using camel for routing a message like this:
from("jbi:service:http://servicemix.in2m.com/samples/http/jmsConsumer1")
.to("jbi:service:http://servicemix.in2m.com/samples/http/MyProviderService?mep=in-out");
I want to get in as well as out message from MyProviderService at a time .
Is it possible to get it.?
I tried this:
from("jbi:service:http://servicemix.in2m.com/samples/http/jmsConsumer1")
.to("jbi:service:http://servicemix.in2m.com/samples/http/MyProviderService?mep=in-out")
.to("jbi:service:http://servicemix.in2m.com/samples/http/beanProviderService2?mep=in-only");
I tried to get messages in beanProviderService2 but I am not able to get the
in message to MyProviderService I only get out message. How can I get both?
Please help.
Pratibha
--
View this message in context:
http://www.nabble.com/getting-in-as-well-as-out-message-at-a-time-tp18257600p18257600.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.