Re: Camel HTTP/2 support

2023-10-09 Thread Alphonse Bendt
Thanks, I had already tried out the http component. Now I also tried out netty, undertow and vert.x http. All of them don’t seem to support http/2. Looks like the rest component just uses the mentioned components. So i will go with the custom processor for now. Alphonse > Am 08.10.2023 um 23:

Re: Camel HTTP/2 support

2023-10-08 Thread ski n
Camel provides various HTTP clients like: 1. http (https://camel.apache.org/components/4.0.x/http-component.html) 2. netty http ( https://camel.apache.org/components/4.0.x/netty-http-component.html) 3. vert.x http ( https://camel.apache.org/components/4.0.x/vertx-http-component.html) 4. rest (http

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? Wha