Square brackets in query param

2022-01-18 Thread Yebba, Nicholas
Hi, I’ve run into an issue with Camel when using square brackets in query params. For example the following endpoint produces an error. https://api.degreed.com/api/v2/content?filter[end_date]=”2022-01-01” The error I receive is: Caused by: java.lang.IllegalArgumentException: Cannot set

Re: Re[2]: Using camel-main, xml route, referencing a java class as processor

2022-01-18 Thread Chirag
Will try bean. For now - I ended up doing a bind in the default registry. I was mainly trying to find a low-code way of doing this. ચિરાગ/चिराग/Chirag -- Sent from My Gmail Account On Tue, Jan 18, 2022 at 2:53 AM Claus Ibsen wrote: > Hi > > In Camel

Re: camel-DNS / Camel 3.11.5 / should import org.slf4j* optional

2022-01-18 Thread Claus Ibsen
Hi You need to have slf4j-api installed in karaf as camel uses slf4j-api for its logging. On Tue, Jan 18, 2022 at 5:20 PM Daniel Langevin wrote: > > Hi, > > I'm on Karaf OSGI v. 4.3.3 > > recently upgrade my environment to CAMEL.3.11.5 and and old BUG come back > with CAMEL-DNS. > >

camel-DNS / Camel 3.11.5 / should import org.slf4j* optional

2022-01-18 Thread Daniel Langevin
Hi, I'm on Karaf OSGI v. 4.3.3 recently upgrade my environment to CAMEL.3.11.5 and and old BUG come back with CAMEL-DNS. java.lang.ClassNotFoundException: org.slf4j.LoggerFactory not found by org.apache.servicemix.bundles.dnsjava Reference: https://issues.apache.org/jira/browse/SM-4761

Re: Possible Camel Issue - Recovery Repository

2022-01-18 Thread Claus Ibsen
Hi Chris On Sun, Jan 16, 2022 at 7:22 PM Chris Furlong wrote: > Hey all, > > I'm using the RedisAggregationRepository for my aggregator, and it > directly supports recovery via RecoverableAggregationRepository. I > noticed that if I'm using a completionPredicate, and the incoming exchange >

Re: Endpoint trying to create additional consumers for URIs with paths

2022-01-18 Thread Claus Ibsen
Hi No this is not really how an endpoint is designed. Each endpoint is responsible for creating its consumer/producers. However a consumer / producer may use some shared entity, such as seda does with its queues. Maybe what you are trying is to shoe-horn everything into the same endpoint. For