Re: Camel bean

2024-07-05 Thread Claus Ibsen
Hi Sounds a bit complex, but you are welcome to create a JIRA. And provide some sample code that demonstrates this. Or see if you dare to add some kind of unit test that reproduces this, and works with your fix. On Fri, Jul 5, 2024 at 5:33 PM logesh wrote: > I am trying to use bean with refer

Re: RabbitMQ component and Failed auto ACK

2024-07-05 Thread Claus Ibsen
Hi You need to ask spring-rabbitmq how their auto ack works, but I would assume it would ack it as soon as Camel receive the message (onMessage) like JMS. And that Camel will process the message no matter what. If you want once and only once semantics then you need something that acks it later (o

Camel bean

2024-07-05 Thread logesh
I am trying to use bean with reference and method call.The bean has overloaded methods and hence it is being called in this way.The below method call was populated with parameter type and value in reference to the guidanct provided in here. https://camel.apache.org/manual/bean-binding.html#_declar

RabbitMQ component and Failed auto ACK

2024-07-05 Thread Guillem Folch
Hi all, I'm currently using a RabbitMQ queue and a client application using SPRING RABBITMQ component as consumer. Currently we are not setting any acknowdlege-Mode, so I guess we are using auto acknacknowledgement , so we let Camel component to manage automatically the ACK of the message whe