Re: Manual Resend Feature

2020-02-28 Thread Andres Q
Look into wiretap (aka Tee) pattern https://camel.apache.org/manual/latest/wireTap-eip.html so that you can send each message to the intended consumer and the backup as well El vie., 28 feb. 2020 17:27, Michael Rambichler escribió: > Dear user group, > > We are currently looking for a concept

Fwd: Manual Resend Feature

2020-02-28 Thread Michael Rambichler
Dear user group, We are currently looking for a concept for a manual resend feature. Independent of the route and the source system (File, SQL, Soap, ...) we want to write a kind of backup (persisted per file?) for all incoming messages. The idea would be to trigger a resend or put this backup in

Re: Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Jean-Baptiste Onofre
Thanks, I gonna fix that for 3.1.1. Regards JB > Le 28 févr. 2020 à 17:35, Gerald Kallas a écrit : > > Done. > > https://issues.apache.org/jira/projects/CAMEL/issues/CAMEL-14629 > >> Andrea Cosentino hat am 28. Februar 2020 17:19 >> geschrieben: >> >> >> Can you please report this on the

Re: Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Gerald Kallas
Done. https://issues.apache.org/jira/projects/CAMEL/issues/CAMEL-14629 > Andrea Cosentino hat am 28. Februar 2020 17:19 > geschrieben: > > > Can you please report this on the Camel JIRA? > > Just reproduced. > > Il giorno ven 28 feb 2020 alle ore 17:15 Gerald Kallas > ha scritto: > > >

Re: Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Andrea Cosentino
Can you please report this on the Camel JIRA? Just reproduced. Il giorno ven 28 feb 2020 alle ore 17:15 Gerald Kallas ha scritto: > I'm still using Java 8 > > $ java -version > openjdk version "1.8.0_222" > OpenJDK Runtime Environment (build 1.8.0_222-b10) > OpenJDK 64-Bit Server VM (build

Re: Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Gerald Kallas
I'm still using Java 8 $ java -version openjdk version "1.8.0_222" OpenJDK Runtime Environment (build 1.8.0_222-b10) OpenJDK 64-Bit Server VM (build 25.222-b10, mixed mode) Tried with Karaf 4.2.8, same error. > Jean-Baptiste Onofre hat am 28. Februar 2020 16:54 > geschrieben: > > > Hi, >

Re: Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Jean-Baptiste Onofre
Hi, That’s normal due to JDK 9+. Previously JAXB was provided by the JDK, but not anymore. So, you have to add the JAXB bundle before installed camel-jackson. I’m working on Camel features to have condition depending of the JDK version. Regards JB > Le 28 févr. 2020 à 16:40, Gerald Kallas a

Re: Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Andrea Cosentino
You need to use Karaf 4.2.8. Il giorno ven 28 feb 2020 alle ore 16:40 Gerald Kallas ha scritto: > I tried to upgrade from Karaf 4.2.7 w/ Camel 3.0.1 towards Karaf 4.2.7 w/ > Camel 3.1.0. > > While executing these commands > > > karaf@root()> feature:repo-add hawtio 2.9.1 > Adding feature url

Install of camel-jackson on Karaf 4.2.7 w/ Camel 3.1.0 causes an error (same worked with Karaf 4.2.7 w/ Camel 3.0.1)

2020-02-28 Thread Gerald Kallas
I tried to upgrade from Karaf 4.2.7 w/ Camel 3.0.1 towards Karaf 4.2.7 w/ Camel 3.1.0. While executing these commands karaf@root()> feature:repo-add hawtio 2.9.1 Adding feature url mvn:io.hawt/hawtio-karaf/2.9.1/xml/features karaf@root()> feature:repo-add activemq 5.15.11 Adding feature url

[ANNOUNCEMENT] Apache Camel K 1.0.0-RC2 released

2020-02-28 Thread Nicola Ferraro
The Camel community announces the immediate availability of Apache Camel K 1.0.0-RC2 and related Camel K Runtime 1.1.0. This is a new step towards version 1.0.0 of Camel K, with several improvements and bug fixes that you can find in the release notes[1]. The artifacts are published and ready for

Re: catch error on Salesforce subscription

2020-02-28 Thread Andres Q
Hi Zoran, you are absolutely right... I was looking for a contrived solution! thanks El jue., 27 de feb. de 2020 a la(s) 20:33, Zoran Regvart (zo...@regvart.com) escribió: > Hi Andrés, > I think it be easier to store the timestamp along with the replayId in > the database and then set it

Re: Passing params between lifecycle managed routes

2020-02-28 Thread nomit babraa
opps - spotted type in my code. should be ... * .multicast() .to("controlbus:route?routeId=routea=suspend=true") .to("bean:myBean?method=setSelector(${in.header.JMSXGroupID})") .to("controlbus:route?routeId=routeb=resume=true")* *...* On Fri, 28 Feb 2020 at 09:20, nomit babraa wrote: >

Re: Passing params between lifecycle managed routes

2020-02-28 Thread nomit babraa
Hi Many thanks for that. I have implemented a bean to be called in both routes. https://camel.apache.org/manual/latest/bean-eip.html seems to say the scope is Singleton as default so hopefully it's defined as singleton. (I'm using Talend to build my routes so not sure but I think each Talend