Re: Bindy dataformat and ZonedDateTime

2020-05-06 Thread Alberto
Ok, the patch is ready. I will try to create a PR. On Tue, 2020-05-05 at 10:15 +0200, Claus Ibsen wrote: > Hi > > I am not sure if there is a reason not. You are welcome to create a > JIRA and work on a PR to add this to Camel. > Mind it has to be on master branch for Camel 3.x. > > > On Tue

Availability of camel-netty-http in Camel 3.x?

2020-05-06 Thread Gerald Kallas
Hi all, I was reading in the migration documentation "We have removed all deprecated components from Camel 2.x, including the old camel-http, camel-hdfs, camel-mina, camel-mongodb, camel-netty, camel-netty-http, camel-quartz, camel-restlet and camel-rx components." Does that mean that camel-ne

Re: Availability of camel-netty-http in Camel 3.x?

2020-05-06 Thread Andrea Cosentino
No, we removed the camel-netty-http coming from 2.x Camel-netty-http of Camel 3 is the equivalent of camel-netty4-http from Camel 2.x It won't be removed in Camel 3, because there is just one version of the component: no distinction between Netty and Netty 4, just one component netty-http Il gio

Base64 Decoding secerets of kubernetes (Apach Camel 3.2.0)

2020-05-06 Thread Imran Raza Khan
I want to get secret from kubernetes and then want to decode it within route, Following is my example from("timer://foo?repeatCount=1&delay=1000") .setHeader(KubernetesConstants.KUBERNETES_NAMESPACE_NAME, simple("myns")) .setHeader(KubernetesConstants.KUBERNETES_SECRET_NAME, simple("broker")) .to(

Re: Opentracing and Kafka Propagation?

2020-05-06 Thread Gerald Nunn
So thanks to some help from Gary Brown we realized the issue is that headers in Kafka are byte arrays and not strings. I've opened a JIRA issue for it here: https://issues.apache.org/jira/browse/CAMEL-15022 Cheers, Gerald On Sun, 3 May 2020 at 15:06, Gerald Nunn wrote: > So I am still stuck o

Re: Opentracing and Kafka Propagation?

2020-05-06 Thread Claus Ibsen
Hi Thanks for reporting back here too. Yeah this would be great to get resolved so we can have nice tracing from kafka. Maybe Gary can help you with providing a fix for us - he has developed the opentracing component AFAIR On Wed, May 6, 2020 at 7:46 PM Gerald Nunn wrote: > > So thanks to some h

Re: Salesforce Change Data Capture reconnection and replayId

2020-05-06 Thread Andres Q
For posterity, the way I solved this is by scheduling in ~24 hours a function that resets the replayId in SalesforceComponent to -2 That way, when app starts I set the replayId (to its value or -2 if it's old enough, I have that data on a db) and schedule the reset. Whenever a new event arrives, I

No bean could be found in the registry for: quartz of type: org.apache.camel.spi.ScheduledPollConsumerScheduler

2020-05-06 Thread Shultz, Dmitry
Hi All, I'm following the example of using Polling Consumer scheduler in https://camel.apache.org/components/latest/quartz-component.html, here is the route from(file://inbox?scheduler=quartz&scheduler.cron= 0 * * ? * * *).log("it works") it fails with: org.apache.webbeans.portable.events.di

Re: No bean could be found in the registry for: quartz of type: org.apache.camel.spi.ScheduledPollConsumerScheduler

2020-05-06 Thread Claus Ibsen
Hi You are using Camel 2.x and looking at the documentation for "latest" which is Camel 3.x. Change the docs to 2.x, there is a drop down in the bottom left corner. On Thu, May 7, 2020 at 2:33 AM Shultz, Dmitry wrote: > > Hi All, > > I'm following the example of using Polling Consumer scheduler