How do I instruct connecting HTTP client to connect to specific server which has diffident IP where other servers use different underlying protocol like web-socket?
Traditional approach HTTP request - HTTP response - end.
Here there are pool of web-socket servers, where client does not connect to it directly, but via HTTP router dispatcher.
First HTTP client connect to HTTP server, HTTP server respond with web-socket server to connect and close connection.
Client then connect to receive server with upgrade ws protocol.
How do I achieve this method?