9 Replies Latest reply on Jul 22, 2009 7:42 AM by janstey

    How to communicate among multiple camel context using camel osgi?

    jkhan

      I am using 4.1.0.2. I want to create 2 different Camel OSGi bundles. Where first camel osgi bundle is dependent on second one. For example

      First camel osgi bundle contains following route:

      from("timer://myTimer?fixedRate=true&period=2000").to("vm:mytransform")..to("log:ExampleRouter");

       

      Second camel osgi bundle contains following route:

      from("vm:mytransform").bean(transform, "transform").to"log:ExampleRouter-vm");

       

      Per my understanding there are 2 camelcontexts, so how they communicate each other.

       

      What other way to communicate among multiple camelcontext?

       

      Thanks

      Jawed