Re: Camel-Kafka parameters sanitization

2024-03-13 Thread Modanese, Riccardo
And what about my question? Riccardo From: Modanese, Riccardo Date: Monday, 11 March 2024 at 14:14 To: users@camel.apache.org Subject: Re: Camel-Kafka parameters sanitization Thanks! From: Claus Ibsen Date: Monday, 11 March 2024 at 14:12 To: users@camel.apache.org Subject: Re: Camel-Kafka

Re: Camel-Kafka parameters sanitization

2024-03-11 Thread Modanese, Riccardo
> 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, >> &

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

Re: unable to work with streams + Artemis large messages with AMQP factory

2023-08-28 Thread Modanese, Riccardo
infra <https://github.com/apache/camel/tree/main/test-infra/camel-test-infra-artemis> Il giorno lun 28 ago 2023 alle ore 15:33 Modanese, Riccardo ha scritto: > Thanks for your reply, I'm going to investigate the links you provided. > > In the meanwhile, I can provide you

Re: unable to work with streams + Artemis large messages with AMQP factory

2023-08-28 Thread Modanese, Riccardo
/camel/component/amqp/AMQPConnectionDetails.java#L64 the AMQPConnectionDetails is later used to configure a org.apache.qpid.jms.JmsConnectionFactory. If you have a reproducer I am happy to help more. Regards, Federico Il giorno lun 28 ago 2023 alle ore 12:14 Modanese, Riccardo ha scritto: > He

unable to work with streams + Artemis large messages with AMQP factory

2023-08-28 Thread Modanese, Riccardo
Hello everyone, I’m working on supporting in a proper way the Artemis large messages through Camel streams. >From the documentation it looks like this is supported only using AMQP or CORE >protocol (no JMS). We use a custom factory since we need to set the connection client ID. I set up

Re: Global limit to threads count used by Camel (engine + routes pools + ..)

2023-08-28 Thread Modanese, Riccardo
, not the same pool instance. Instead use to create a pool instance and share this. See more in the docs https://camel.apache.org/manual/threading-model.html On Mon, Aug 28, 2023 at 9:53 AM Modanese, Riccardo wrote: > Hello to everyone, > I’m working to place a cap to the threads used by my

Global limit to threads count used by Camel (engine + routes pools + ..)

2023-08-28 Thread Modanese, Riccardo
Hello to everyone, I’m working to place a cap to the threads used by my Camel routes. I have several routes (the number can vary time to time) and I created a thread pool profile like this one (Camel 3.x with SpringBoot 2.5.x) My routes have a recipient list and an error handler (no

AMQP route doesn't work after a target AP broker restart

2022-06-15 Thread Modanese, Riccardo
Hello, I created a SpringBoot application (see (1) for used versions) that deploys an AMQP route with my redefined endpoint and my custom connection factory. The beans are defined as follow: ... ... ... Using this configuration, if the target

Re: Rép. : Http4 endpoint throws UrlRewrite NoClassDef

2021-05-06 Thread Modanese, Riccardo
gt;>> De :"Modanese, Riccardo" À : "users@camel.apache.org" Date : 2021-05-04 10:07 Objet : Http4 endpoint throws UrlRewrite NoClassDef Hi all, I’m moving http routes from Camel 2.x to 3.x. Main dependencies are Camel 3.4 Sp

Http4 endpoint throws UrlRewrite NoClassDef

2021-05-04 Thread Modanese, Riccardo
Hi all, I’m moving http routes from Camel 2.x to 3.x. Main dependencies are Camel 3.4 SpringBoot 2.2.7-RELEASE Spring 5.2.6-RELEASE The http endpoints are configured at runtime and injected into Spring context. So, when a message is routed to an http endpoint I get this exception: Caused by:

Re: Subscription left once a route is removed programmatically

2020-04-23 Thread Modanese, Riccardo
definition remove) - remove the route and then the route definition and the endpoints - repeat the same steps invoking the route stop before but the result is the same Does someone have any idea about why it happens? Il giorno 31 mar 2020, alle ore 10:27, Modanese, Riccardo mailto:riccardo.modan

Re: Subscription left once a route is removed programmatically

2020-03-31 Thread Modanese, Riccardo
; Does it disappear when you GC the ActiveMQ component alltogether? > > Can you show the result of `netstat -atp` on the Broker machine? > > On 3/30/20 11:54 AM, Modanese, Riccardo wrote: >> Hi >> I switched the log to DEBUG level and I simplified the test leaving

Re: Subscription left once a route is removed programmatically

2020-03-30 Thread Modanese, Riccardo
u are dealing with inflight exchanges here? > > Can you try to instead just stop the routes? > > -Ralf > > On 3/27/20 2:20 PM, Modanese, Riccardo wrote: >> Hi all, >> >> I'm experimenting with programmatically routes creation and removal >> (Camel versi

ModularRealmAuthorizer isPermitted implementation with multiple permissions to check

2020-03-27 Thread Modanese, Riccardo
Hi all, I have a question about the ModularRealmAuthorizer implementation (Shiro version 1.3.2). There are 2 methods to check multiple permissions: public boolean[] isPermitted(PrincipalCollection principals, String... permissions) public boolean[] isPermitted(PrincipalCollection

Subscription left once a route is removed programmatically

2020-03-27 Thread Modanese, Riccardo
Hi all, I'm experimenting with programmatically routes creation and removal (Camel version 2.17). The routes are created and removed at runtime through my custom RouteBuilder instance and are consuming from ActiveMQ 5 (with virtual topic enabled). Once a route is removed (*) all the