Re: Camel JMS & transaction : redelivery conditions ignored

2024-03-11 Thread Ephemeris Lappis
Hello Claus. I'm not sure that I should change anything on the broker side : with the same ActiveMQ, java applications with a similar connection factory configuration (maximumRedeliveries=0) actually do a rollback on failing messages processing, and the broker moves them to DLQ queues. These

Re: Camel JMS & transaction : redelivery conditions ignored

2024-03-11 Thread Claus Ibsen
Hi You need to set this on the broker side, it's the one that does the redelivery. Every broker has their own settings for DLQ and redelivery. On Mon, Mar 11, 2024 at 2:20 PM Ephemeris Lappis wrote: > Hello. > > It seems that the JMS consumer ignores the redelivery conditions that > I set on

Re: Camel-Kafka parameters sanitization

2024-03-11 Thread Modanese, Riccardo
Thanks! From: Claus Ibsen Date: Monday, 11 March 2024 at 14:12 To: users@camel.apache.org Subject: Re: Camel-Kafka parameters sanitization Hi I created a ticket https://issues.apache.org/jira/browse/CAMEL-20549 On Mon, Mar 11, 2024 at 1:20 PM Claus Ibsen wrote: > Hi > > > Thanks for

Camel JMS & transaction : redelivery conditions ignored

2024-03-11 Thread Ephemeris Lappis
Hello. It seems that the JMS consumer ignores the redelivery conditions that I set on my route : java.lang.Exception

Re: Camel-Kafka parameters sanitization

2024-03-11 Thread Claus Ibsen
Hi I created a ticket https://issues.apache.org/jira/browse/CAMEL-20549 On Mon, Mar 11, 2024 at 1:20 PM Claus Ibsen wrote: > Hi > > > Thanks for reporting. You are welcome to create a JIRA so we can fix this > little bug. > We need to make Camel pass in that value as upper case so it can match

Re: Camel-Kafka parameters sanitization

2024-03-11 Thread Claus Ibsen
Hi Thanks for reporting. You are welcome to create a JIRA so we can fix this little bug. We need to make Camel pass in that value as upper case so it can match the PEM equals On Mon, Mar 11, 2024 at 12:13 PM Modanese, Riccardo wrote: > Hi guys, > > I have a question about Kafka routes and

Camel-Kafka parameters sanitization

2024-03-11 Thread Modanese, Riccardo
Hi guys, I have a question about Kafka routes and security. I’m worried about injection (like what can be done in sql or http I mean) through “url options” parameters value (especially for those enclosed between RAW() such as truststore/keystore password or jaas config). Is my concern valid or