Re: Documentation for SupervisingRouteController

2019-11-19 Thread Tadayoshi Sato
Hi, It's not documentation but there is an example that tells how to use Supervising Route Controller. You might find it helpful: https://github.com/apache/camel/tree/camel-3.0.0-RC3/examples/camel-example-spring-boot-supervising-route-controller On Tue, Nov 19, 2019 at 10:28 PM Claus Ibsen wrot

Re: How to get route Exception in a processor with camel+rabbitmq

2019-11-19 Thread Alessandro Hoss
In ActiveMQ component there is a "transferExchange" URI parameter, which makes possible to get the exception after sending it to another queue through activemq. Is there a way of doing this (transfer the exchange over the messaging layer) with RabbitMQ? Em qua., 13 de nov. de 2019 às 17:45, Aless

Re: Documentation for SupervisingRouteController

2019-11-19 Thread Claus Ibsen
Hi If you use camel-main then there is a JIRA about making configuring this out of the box better https://issues.apache.org/jira/browse/CAMEL-13535 For spring-boot there is already an example you can look at. But yeah we should get this done for camel main, so keep an eye on that JIRA ticket On

Documentation for SupervisingRouteController

2019-11-19 Thread Imran Raza Khan
I have MQTT route like below from("paho:mytopic?brokerUrl=tcp://0.0.0.0:1883&clientId=ipc) .routeId("myroute") .to("log:my?showAll=true&multiline=true"); it starts only if broker is available and after that if it lost connectivity with broker it handle it very well and resume. But my