Re: Workshop/Conference for Copenhagen/Malmö Camel developers ?

2017-01-10 Thread Preben.Asmussen
Hi Souciance Count me in. Sounds like a good to idea. I might be able to provide a location for such an event. Best, Preben -- View this message in context: http://camel.465427.n5.nabble.com/Workshop-Conference-for-Copenhagen-Malmo-Camel-developers-tp5792374p5792381.html Sent from the Came

Re: Spring boot + MockEndpointsAndSkip + DirtiesContext

2017-01-10 Thread Pontus Ullgren
Thanks for quick reply. Turned out I was using the wrong runner class in the @RunWith annotation. Following Claus instructions in the ticket solved the issue. Thanks Pontus On Tue, 10 Jan 2017 at 23:24 Minh Tran wrote: > Hi Pontus, > > Yep I ended up raising this > https://issues.apache.org/ji

Property with key XXX not found in properties from text (blueprint, sslContextParameters)

2017-01-10 Thread Alex Soto
Hello, Starting with Camel 2.18.0, and including 2.18.1, I am getting this error during deployment of my Blueprint routes. The exact same blueprint deploys fine with version 2.17.4, so it looks like something was changed in 2.18.x that is causing this. Here is a fragment of my blueprint xml:

Re: How to call a route, wait to finish, and ignore any changes when this returns?

2017-01-10 Thread Christian Schaefer
UNSUBSCRIBE Taariq Levack schrieb am 18:28 Dienstag, 10.Januar 2017: In that scenario you might consider multicasting to a route that processes the deletes in order, as well as to the next/result route. Just don't process in parallel in that case. Also, I wouldn't suggest the enricher fo

Re: Spring boot + MockEndpointsAndSkip + DirtiesContext

2017-01-10 Thread Minh Tran
Hi Pontus, Yep I ended up raising this https://issues.apache.org/jira/browse/CAMEL-9332 It was fixed when I last checked this in 2.17.1. Not sure about 2.18.0 though. > On 11 Jan 2017, at 9:13 am, Pontus Ullgren wrote: > > Hi, > > Did anyone

Re: Spring boot + MockEndpointsAndSkip + DirtiesContext

2017-01-10 Thread Pontus Ullgren
Hi, Did anyone ever raise a Jira for this issue ? It seems that @MockEndpointAndSkip still (2.18.0) does not work. Best regards Pontus Ullgren On Tue, 9 Aug 2016 at 02:59 Minh Tran wrote: > Hi, should I raise a jira for this? > > > On 5 Aug 2016, at 10:03 AM, Minh Tran wrote: > > > > Hi > >

Workshop/Conference for Copenhagen/Malmö Camel developers ?

2017-01-10 Thread souciance
Hello all Camel developers, I am sure there are quit a few Camel users in the Copenhagen/Malmö area and the surrounding cities. I was wondering if there is any interest for meeting up and sharing various experiences, examples of how people do things and general discussions on problems people faced

Re: How to call a route, wait to finish, and ignore any changes when this returns?

2017-01-10 Thread Taariq Levack
In that scenario you might consider multicasting to a route that processes the deletes in order, as well as to the next/result route. Just don't process in parallel in that case. Also, I wouldn't suggest the enricher for each delete like in your example, perhaps rather route to something that spli

Re: synchrone and asynchrone question

2017-01-10 Thread Claus Ibsen
Just mind about when an exchange cross camel contexts its different and then it cannot use placeholders from the old camel context. So make sure you have those cfg configured in all your camel context you use for vm On Tue, Jan 10, 2017 at 11:38 AM, bdeweer wrote: > Camel 2.18.1 With Karaf 4 and

Re: synchrone and asynchrone question

2017-01-10 Thread bdeweer
Camel 2.18.1 With Karaf 4 and blueprint -- View this message in context: http://camel.465427.n5.nabble.com/synchrone-and-asynchrone-question-tp5792346p5792348.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: synchrone and asynchrone question

2017-01-10 Thread Claus Ibsen
What version of Camel do you use On Tue, Jan 10, 2017 at 11:22 AM, bdeweer wrote: > Hello, > > Today I encounter a strange situation with my project so could you please > explain what's the difference between : > > (asynchrone to asynchrone component) > > and > > (synchrone to asynchrone compon

synchrone and asynchrone question

2017-01-10 Thread bdeweer
Hello, Today I encounter a strange situation with my project so could you please explain what's the difference between : (asynchrone to asynchrone component) and (synchrone to asynchrone component) and (asynchrone to synchrone component) As the name suggests, I need to save the payload

Performance degradation with RHEL 6.5 and Apache Camel 2.15.0

2017-01-10 Thread mirchandaniprashant9692
I am using Apache Camel 2.15.0 version in my web application and using the Rest Component for defining the REST endpoints using Java DSL. The application runs properly with Windows platform, however I had seen the very poor performance while testing with the RHEL 6.5 and 7.3. After enabling the l

Re: How to call a route, wait to finish, and ignore any changes when this returns?

2017-01-10 Thread sim085
However thinking out loud ... is this the right way to do it? This is actually the opposite of message enriching. It works, I just wonder if it is the right approach. For example imagine a scenario where you have a CSV file which has a list of users that have to be deleted from a system. You load

Re: How to call a route, wait to finish, and ignore any changes when this returns?

2017-01-10 Thread sim085
Hi taariq, thanks for pointing this out. This worked fine. [code] class KeepOriginalAggregationStrategy implements AggregationStrategy { public Exchange aggregate(Exchange original, Exchange resource) { return original;