Hello, I'm trying to get notifications from a single listeners for messages sent from a context "1" to a context "2" in which they are processed (in my case, stored in a database). In every route I used, I set the ExchangePattern to InOut, and I'm using a EventListener to receive notifications and more specifically ExchangeCompletedNotifications.
>From my understanding (correct me if I'm wrong), Exchanges are bound to a route. A given message can travel through multiple routes, but for each route, it will be carried by a different Exchange, even in the same context/ Now, using the InOut exchange pattern, is it possible to be notified that a given message was processed in another route in another context (or even in another JVM) ? I've read the http://camel.apache.org/request-reply.html page, but did not see how to deal with the response message. I suspect that I could use the CorrelationId in the response, but I don't know how.. Thank you in advance Regards, -- Xavier
