Re: [ANNOUNCE] Apache Camel 4.5.0 Released

2024-03-28 Thread Alphonse Bendt
Hi folks, > Am 28.03.2024 um 12:43 schrieb Gregor Zurowski : > > The Camel PMC is pleased to announce the release of Apache Camel 4.5.0. just tried out to update one of our projects from 4.4.1 to 4.5.0 (current SpringBoot version, using JUnit5 based tests) With the update a number of tests

Re: Issue with SpringBootTest and camel-rest

2024-02-19 Thread Alphonse Bendt
m-http */** > > Il giorno dom 18 feb 2024 alle ore 15:09 Alphonse Bendt < > alphonse.be...@gmail.com> ha scritto: > >> Hi folks, >> >> There is an issue when running tests for a SpringBoot application that >> uses camel-rest. >> >> When

Re: Issue with SpringBootTest and camel-rest

2024-02-18 Thread Alphonse Bendt
gt; Hi > > You can try using platform-http-starter instead of servlets > > On Sun, Feb 18, 2024 at 3:09 PM Alphonse Bendt > wrote: > >> Hi folks, >> >> There is an issue when running tests for a SpringBoot application that >> uses camel-rest.

Issue with SpringBootTest and camel-rest

2024-02-18 Thread Alphonse Bendt
Hi folks, There is an issue when running tests for a SpringBoot application that uses camel-rest. When there are multiple tests that use a different configuration (e.g., different properties), we run into this error: Caused by: jakarta.servlet.ServletException: Duplicate

AWS Kinesis Consumer

2023-12-16 Thread Alphonse Bendt
Hi folks, A couple of days ago, I asked about resuming an AWS kinesis stream consumer: https://lists.apache.org/thread/sc6oks5jckcbj19t06chmfpm6dpwt60t I have experimented a bit more with the camel codebase and think now that there is functionality missing to allow implementing a

AWS Kinesis Consumer

2023-12-11 Thread Alphonse Bendt
Hi folks, For a project, I was evaluating how to use the Camel AWS Kinesis component to consume from a Kinesis stream. I am currently trying to understand how to properly set upstream offset handling so that an application can be restarted and won’t need to re-consume the whole stream. The

Re: Camel HTTP/2 support

2023-10-09 Thread Alphonse Bendt
In the HTTP client since JDK 11 you can explicitly set the version. > > Raymond > > > > > On Sun, Oct 8, 2023 at 7:17 PM Alphonse Bendt > wrote: > >> Hi folks, >> >> How can I use Camel to send HTTP/2 requests to an existing HTTP/2 endpoint? >> >&

Camel HTTP/2 support

2023-10-08 Thread Alphonse Bendt
Hi folks, How can I use Camel to send HTTP/2 requests to an existing HTTP/2 endpoint? I tried out the http-component and it does not seem to support http/2. Are there any other camel components available that support that? Are there any plans to extend the http-component with http/2 support?

Re: How do I setup camel-rest in combination with spring-webflux-netty?

2023-09-22 Thread Alphonse Bendt
omcat for now. Thanks so far! > Am 21.09.2023 um 13:25 schrieb Claus Ibsen : > > Hi > > Use the platform-http for the consumer - then you use what spring comes > with as http server. > > > On Thu, Sep 21, 2023 at 1:04 PM Alphonse Bendt > wrote: > >> Hi folk

How do I setup camel-rest in combination with spring-webflux-netty?

2023-09-21 Thread Alphonse Bendt
Hi folks, Within a Spring boot application I want to use camel-rest as consumer to be able to define rest endpoints: from(„rest://get/hello-world“).constant(„Some static content“) This works fine with the spring-boot-starter-web which uses Tomcat: Get http://localhost:8080/rest/hello-world =>