from("direct:readsql").to("sql:select * from orders where processed =
false").split(body())
.parallelProcessing().to("direct:split");
from("direct:split").to("sql:select * from orders_address where id=
:#${body[ID]}").log("Message :${body}");
Is there a way to concatenate result from orders table and orders_address
table and log it? Any suggestion would be really help full.
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Concatenating-input-and-output-for-an-endpoint-tp5769829.html
Sent from the Camel - Users mailing list archive at Nabble.com.