Re: Loop should continue after exception caught.

2016-09-28 Thread ptatTransamerica
It was breaking the loop. But I found a bug in my code that resolved the issue. However, that was useful tip. Thank you for your time :). -- View this message in context: http://camel.465427.n5.nabble.com/Loop-should-continue-after-exception-caught-tp5787979p5788163.html Sent from the Camel -

Re: Loop should continue after exception caught.

2016-09-27 Thread ptatTransamerica
Hi Ibsen, I see a case here that you responded earlier. http://stackoverflow.com/questions/31312281/apache-camel-loop-does-not-stop-on-exception https://issues.apache.org/jira/browse/CAMEL-8945 So, can't I continue after catching the exception in loop? In my case, after catching the exception,

Re: Loop should continue after exception caught.

2016-09-26 Thread ptatTransamerica
Yes, I use 2.17.3. -- View this message in context: http://camel.465427.n5.nabble.com/Loop-should-continue-after-exception-caught-tp5787979p5788064.html Sent from the Camel - Users mailing list archive at Nabble.com.

Loop should continue after exception caught.

2016-09-23 Thread ptatTransamerica
Hi, I am looking for the option to continue the loop after catching the exception in the route. e.g ${body.size} .calling some service which can produce exception. java.lang.Exception after catching the exception, I need to continue the loop here. Any