WebSocket4Net
WebSocket4Net copied to clipboard
talking to sockjs server
is it possible to use websocket4net to communicate with a sockjs server which supports version 0.3.3 of the sockjs protocol?
I try to initalize this client like this
WebSocket websocketClient = new WebSocket("ws://localhost:7000/sockjsserver/websocket", "", WebSocketVersion.Rfc6455);
and I see that the connection is established successfully because the Opened event gets raised. But whenever I try to send some data from the sockjs server websocket, the client does not receive anything