Re: Web socket client

2022-03-31 Thread Knut-Håvard Aksnes
Some kind of client Only flag on endpoints of components supporting ws clients would be nice. Short term I can continue using ahc-websockets. ons. 30. mar. 2022, 17:07 skrev Romain Manni-Bucau : > Hi, > > AFAIK it is not that possible as of today but using JSR356 (used under the > hood in > https

Re: Web socket client

2022-03-30 Thread Romain Manni-Bucau
Hi, AFAIK it is not that possible as of today but using JSR356 (used under the hood in https://camel.apache.org/components/3.15.x/websocket-jsr356-component.html) you can achieve that setting the ws session in the route as property (or alike) so can be faster and more reliable to extend the existi

Re: Web socket client

2022-03-30 Thread Knut-Håvard Aksnes
A quick note I am using the WS connections bidirectionaly so I need both producers and a consumer on the same client connection. This works with AHC websockets but I haven't found any of the other WS components documenting how to do this. Some might do so but it is not documented in component docum

Web socket client

2022-03-30 Thread Knut-Håvard Aksnes
I need a web socket library working as a client library for a project I am working on currently. When using Camel 3.15 I did use AHC websocket for this, due to its depreciation in 3.16 I am trying to use Vertx websockets instead as it is documented to work both as server and as client library. I ne