Hi,
something like
.skipSendToOriginalEndpoint()
.to("direct:ROUTE_3")
inside the onException should do the job or am I wrong ?
--
View this message in context:
http://camel.465427.n5.nabble.com/Reroute-from-onException-Handler-Processor-tp5746043p5746053.html
Sent from t
just inside of the onexception block, you do not need any intercept in your
case :
@Override public void configure() throws Exception {
onException(Exception.class)
.maximumRedeliveries(10)
.redeliveryDelay(2500)
.handled(true)
.to("direct:RO
Many Thanks,
This is exactly What I was looking for ...
Regards,
Stéphane.
--
View this message in context:
http://camel.465427.n5.nabble.com/Breadcrumid-not-unique-tp5746052p5746087.html
Sent from the Camel - Users mailing list archive at Nabble.com.