Using a Quarkus WebSocket Next client behind a proxy
we use the WebSocketClientConnection with a WebSocketConnector which has a @WebSocketClient() to run a WebSocketClient to a remote WebSocket server.
In out pom we have the quarkus-websockets-next dependency.
When running it locally from my laptop is works all fine. But running it on the our platform with Rancher/Docker then is doe s not work. This is because the outgoing communication is behind a proxy.
The question is: how to configure a proxy for the WebSocketClientConnection and/or WebSocketConnector? I do not see anything in the documentation for it.
Regards,
Martin.
Using a Quarkus WebSocket Next client behind a proxy
we use the WebSocketClientConnection with a WebSocketConnector which has a @WebSocketClient() to run a WebSocketClient to a remote WebSocket server.
In out pom we have the quarkus-websockets-next dependency.
When running it locally from my laptop is works all fine. But running it on the our platform with Rancher/Docker then is doe s not work. This is because the outgoing communication is behind a proxy.
The question is: how to configure a proxy for the WebSocketClientConnection and/or WebSocketConnector? I do not see anything in the documentation for it.
Regards,
Martin.
How to set query string using WebSocketConnector from quarkus-websockets-next?
Is it possible to set a query string using WebSocketConnector from quarkus-websockets-next? If not I would be glad to find a workaround.