Re: Dynamically continue route on exception

2016-05-24 Thread dmitriyC300
duh - not sure how i missed it. thanks! -- View this message in context: http://camel.465427.n5.nabble.com/Dynamically-continue-route-on-exception-tp5783038p5783050.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Dynamically continue route on exception

2016-05-24 Thread Quinn Stevenson
eption=false").process(process2).end(); > from("route3").onException(Exception.class).continue(simple("${property.continueOnException}")).end().process(process3).end(); > > Dmitriy > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Dynamically-continue-route-on-exception-tp5783038.html > Sent from the Camel - Users mailing list archive at Nabble.com.

Dynamically continue route on exception

2016-05-24 Thread dmitriyC300
d(); from("route2").process("route3?continueOnException=false").process(process2).end(); from("route3").onException(Exception.class).continue(simple("${property.continueOnException}")).end().process(process3).end(); Dmitriy -- View this message in context: http://c