Hi, I would like to know if there's a way/workaround to communicate between multiple camel contexts. ie direct:bleh here:
<!-- START SNIPPET: example2 --> <camelContext id="camel1" xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="file:src/data?noop=true"/> <to uri="direct:bleh"/> </route> </camelContext> <!-- START SNIPPET: example2 --> <camelContext id="camel2" xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="direct:bleh"/> <to uri="file://target/test2?noop=true"/> </route> </camelContext> Thanks, Regards, Sébastien. -- View this message in context: http://www.nabble.com/Endpoints---Routes-communication-between-multiple-camel-contexts-tp19920500s22882p19920500.html Sent from the Camel - Users mailing list archive at Nabble.com.
