Hello,

I need to create a modular application using Camel. The structure is that there is a "core" module and some peripheral "adapter" modules, each of which is packaged as a WAR and deployed in the same container (Jetty).

What would be the most efficient way perform synchronous request-reply message exchanges among the "core" and the "adapters"?

The aparent way for me is to have each module export its API via a web service and have one module invoke the other using SOAP/HTTP. Performance is important however and I'd like to avoid that, since all these WARs are meant to be installed in the same JVM (one jetty container).

Thank you in advance.

Reply via email to