I am very new to EIP and ApacheCamel and need some help from the experts. The question is basically about the best way to retrieve data from system B that system A requires using ApacheCamel. For example: System B has MultiplyService. System A needs to use that Service via ApacheCamel. ApacheCamel receives the request from System A, pass it to system B (somehow), wait for the response then pass it back to system A. So far the example I found online assumes the MultiplyService lives in ApacheCamel itself:
from("jms:queue:numbers").to("multiplier");
Thanks in advance.