Hi,
Yes, it is possible. You need to break up the route into 2 routes and make
the endpoint a consumer
for e.g
from("Uri-A")
.to("Uri-B")
.to("Uri-C");
becomes
from("Uri-A")
.to("Uri-B");
from("Uri-Z")
.to("Uri-B");
from ("Uri-B")
.to("Uri-C");
Hope this helps.
Cheers,
Ashwin...
-----
---------------------------------------------------------
Ashwin Karpe
Apache Camel Committer & Sr Principal Consultant
FUSESource (a Progress Software Corporation subsidiary)
http://fusesource.com
Blog: http://opensourceknowledge.blogspot.com
---------------------------------------------------------
--
View this message in context:
http://camel.465427.n5.nabble.com/No-names-for-endpoints-tp4885334p4887864.html
Sent from the Camel - Users mailing list archive at Nabble.com.