Error encrypting value using camel-jasypt-2.18.1.jar

2017-02-16 Thread blackard
Howdy, I tried searching and didn't see anything on this. I tried encrypting a value using the camel-jasypt-2.18.2.jar (Camel 2.18.2) following http://camel.apache.org/jasypt.html. I also found this same behavior with the 2.18.1 release. The issue _does not_ affect the 2.17.5 release. C:\Progr

Issue Using Camel-Zipkin in xml

2017-02-16 Thread itsmurugappan
Hi, I am trying to do a poc on camel-zipkin. Java DSL works fine but xml bean definition doesnt. Below is my route xml http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:camel="http://camel.apache.org/schema/spring"; xmlns:util="ht

Re: Setting a route-id for REST DSL routes

2017-02-16 Thread Rajith Muditha Attapattu
That doesn't work due to not being in the API for the REST DSL. But you could do .route().routeId() Was expecting .routeId() to work directly or if there's something that we missed. On Thu, Feb 16, 2017 at 1:19 PM, Luis Javier Jiménez Ordás < ljji...@hotmail.com> wrote: > Sorry, I meant > > > r

Re: Setting a route-id for REST DSL routes

2017-02-16 Thread Luis Javier Jiménez Ordás
Sorry, I meant rest("myapplication") .routeId("MyRouteId") .get("/{pathPram1}") .outType(MyClass.class) .to("direct:myroute") Regards. De: Luis Javier Jiménez Ordás Enviado: jueves, 16 de febrero de 2017 18:18 Para: users@camel.apache.org Asunto: R

Re: Setting a route-id for REST DSL routes

2017-02-16 Thread Luis Javier Jiménez Ordás
Have you tried something like: rest("myapplication") .id("MyRouteId") .get("/{pathPram1}") .outType(MyClass.class) .to("direct:myroute") Regards. De: Rajith Muditha Attapattu Enviado: jueves, 16 de febrero de 2017 18:05 Para: users@camel.apache.or

Setting a route-id for REST DSL routes

2017-02-16 Thread Rajith Muditha Attapattu
I have a route as follows rest("myapplication") .get("/{pathPram1}") .outType(MyClass.class) .to("direct:myroute") Camel by default adds a routeId to it as "routexx" I want to set a meaningful route-id to the above 1. To turn logging on off for certain routes. 2. When I look at the rout

Concurrent modification of DefaultExchange

2017-02-16 Thread rsteppac2
Hello all, I have to ensure that the thread that runs a route (and the error handler) is guaranteed to see an exception set on the exchange instance if that instance is shared by many threads and the exception is set by one of those threads. I have a route step that massages the data in an input

Re: activemq+camel encrypt/decrypt byte message Problem

2017-02-16 Thread Zoran Regvart
Hi, On Thu, Feb 16, 2017 at 5:38 AM, Juno wrote: > If so, how should I pass the secret key when encrypting / decrypting using > camel? > Is it included in the header? Or does the message itself contain a secret > key? Secret key by definition must be shared with the involved parties beforehand,

activemq+camel encrypt/decrypt byte message Problem

2017-02-16 Thread Juno
hi~ everyone I am a user using camel 2.18.2. Currently I am testing the encryption/decryption of messages using two PCs. The encryption algorithm uses AES/CBC/PKCS5Padding (256bit). Here is the test procedure. On t