WebSocketListener icon indicating copy to clipboard operation
WebSocketListener copied to clipboard

A lightweight and scalable asynchronous WebSocket listener

Results 28 WebSocketListener issues
Sort by recently updated
recently updated
newest added

webSocket.ReadStringAsync would improperly the frame header when it did not read the full header.

Hello, I'm using the WebSocketListener lib, it's very good, works fine when the scheme is `ws://`. But the server won't work when register for Secure WebSocket. Whats happens is: I...

Hello, I am having .Net core 2.1 Application with nuget package version 3.0.0, I am getting error while using OnHttpNegotiation in my application as below as it expects return type...

This exception is getting thrown from WebSocketConnectionRfc6455 when trying to parse the header of a message that is being sent from a wss connection from javascript. The code associated is...

Hello! I have a next exception when client try to connect to listener by wss: ``` Api.Hubs.Private.WebSocket.WebSocketHubPrivate+c__async0: WebSocket Stop accepting clients vtortola.WebSockets.WebSocketException: Not GET request at vtortola.WebSockets.WebSocketHandshaker.ParseGET (System.String line, vtortola.WebSockets.WebSocketHandshake...

When setting up a secure websocket listener, only SSL 3.0 and TLS 1.0 are supported, due to passing SslProtocols.Default to AuthenticateAsServer and AuthenticateAsServerAsync. This causes an issue on machines that...

This occurs because `SubProtocolsSet is null` even when `SubProtocols` is set to something in `WebSocketListenerOptions`. A workaround is to `Clone` the options after creating them.

In case of working with Java Spring 5.0 Web Sockets, the following error was occurred: ``` WebSocketMessageReadNetworkStream can only start with a Text or Binary frame, not Continuation. ``` How...

Greetings, I am trying to connect using WSS but I keep on receiving gibberish data when reading. Here is the code for starting the server ```c# CancellationTokenSource cancellation = new...

Exception thrown: 'System.ObjectDisposedException' in mscorlib.dll is being almost immediately thrown twice when trying to test a websocket with chrome on http://demos.kaazing.com/echo/index.html. Works fine in firefox. From that site, I am...