Re: Camel file movement from one folder to another sometimes giving exception saying "Cannot rename file"

2016-07-07 Thread vgaur
Hi, I am not sure what are you trying to do but your destination Folder should not contain move and move failed option . At the same time change move to premove to avoid conflict. / / -- View this message in context: http://camel.465427.n5.nabble.com/Camel-file-movement-from-one-folder-to

Re: Host name in RabbitMQ endpoint with connectionFactory

2016-07-07 Thread vgaur
Hi, I endpoint uri starts with rabbitmq:// followed by the hostname. Port is optional but host name is mandatory. At the same time while specifying rabbitmq connection factory I am doing this is camel-context : /

Host name in RabbitMQ endpoint with connectionFactory

2016-07-07 Thread vgaur
Hi, I am using camel-rabbitmq component and specifying my endpoint in property file something like this. /rabbitmq://localhost:5672/Exchange?connectionFactory=#customConnectionFactory&queue=queue&routingKey=key&exchangeType=direct&durable=true&autoDelete=false/ The host name I have specified in

Transactional RabbitMQ Consumer with Spring boot

2016-06-09 Thread vgaur
Hi, I am trying to create a camel route having rabbitmq consumer inside a transaction. I am using Spring boot and atomikos for tx management. Rabbit MQ queue already has x-dead-letter-exchange and routing key set up. How should I wrap my rabbitmq connection factory inside JTA tx manager ? I trie