It does not. This is the code in compA. I see the system out:
public String start2(String from){ String message = "in compA from: \"" + from + "\""; System.out.println(message); return message; } This is the code in compB. I do not see the system out: public String start(String from){ String message = "in compB from: " + from; System.out.println(message); return message; } Obviously I am doing something wrong, but even this simple case does not work for me. I assume the creation of message/exchange between A and B should be done by Camel, right? -- View this message in context: http://old.nabble.com/newbie-help-tp26951866p26953226.html Sent from the Camel - Users mailing list archive at Nabble.com.