Re: Camel 3.0.1 Jetty HTTP Basic Authentication - configuration in a route following the doc doesn't work

2020-04-04 Thread Jean-Baptiste Onofre
Hi I guess the documentation is not aligned with jetty version actually used. You are using Karaf 4.2.8 ? Camel jetty feature uses the jetty version provided by pax-web/karaf, so the documentation is not maybe correct for 9.4.22/27. Regards JB > Le 4 avr. 2020 à 10:08, Gerald Kallas a écrit

Re: Upgrading to CamelCXF throws weird error

2020-04-04 Thread Reji Mathews
Try to resolve this cause "The property 'JMS_IBM_MsgType' should be set using type 'java.lang.Integer', not 'java.lang.String'." On Fri, 3 Apr 2020, 06:21 SRIKANT MVS, wrote: > Hi All, > I am getting the below error after upgrading to camel 3.0.0 > > Versions used in the POM > *camel version* :

Re: Camel 3.0.1 Jetty HTTP Basic Authentication - configuration in a route following the doc doesn't work

2020-04-04 Thread Reji Mathews
You just need to install corresponding osgi bundle which has the missing dependency into the karaf Just Google around for that particular osgi dependency. You can use command "osgi:install " Btw, this question should be posted on forums for fuse or service mix Cheers Reji On Sat, 4 Apr 2020,

Re: Grouped Aggregation Strategies...

2020-04-04 Thread Craig Taylor
>> Are you really sure as its supposed to store a List that are the message body. Yes, wanting to accumulate List over a period of time so before passing into a "full changes" object so that batching of the request to a 3rd party api can occur. I'm using Camel 3.1.0, and more detail / output from

Re: Grouped Aggregation Strategies...

2020-04-04 Thread Mikael Andersson Wigander
Claus (or any other ), please correct me if I’m wrong but all the GroupedAggregationStrategies extends AbstractListAggregationStrategy and by inheritance aggregate() is called on the extended class if not provided by own class. This method in Camel 2.25.0 is only returning the Exchange (old/new o

Camel 3.0.1 Jetty HTTP Basic Authentication - configuration in a route following the doc doesn't work

2020-04-04 Thread Gerald Kallas
Dear community, I've configured a route as following snippet (following the documentation https://camel.apache.org/components/latest/jetty-component.html) http://www.osgi.org/xmlns/blueprint/v1.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http:

Re: Grouped Aggregation Strategies...

2020-04-04 Thread Claus Ibsen
Hi Here is an unit test that tests it groups the body as a List https://github.com/apache/camel/commit/f000201a1d0200fa8b9e596a516a84acb85dc538 On Sat, Apr 4, 2020 at 9:50 AM Claus Ibsen wrote: > > Hi > > Are you really sure as its supposed to store a List that are > the message body. > But ther

Re: Grouped Aggregation Strategies...

2020-04-04 Thread Claus Ibsen
Hi Are you really sure as its supposed to store a List that are the message body. But there are however only one unit test for this in camel-jms, so lets add one to camel-core. On Fri, Apr 3, 2020 at 11:23 PM Craig Taylor wrote: > > I'm wanting to accumulate all exchanges matching a correlation

Re: Dynamic Camel route configuration at deployment time: Java DSL or XML DSL?

2020-04-04 Thread Claus Ibsen
Hi I do think there are plenty of XML examples too, or if there is only one such as Java, then the Camel DSL is easily 1:1 between Java and XML so you should be able to figure out how to do it. from -> to -> choice -> aggregate -> The difference is subtle when configuring some of these EIPs