Owin.WebSocket
Owin.WebSocket copied to clipboard
A library for handling OWIN WebSocket connections
Updated dependency has its namespace changed from Microsoft.Practices.ServiceLocation to CommonServiceLocator. Ref: https://github.com/unitycontainer/commonservicelocator/commit/908a30f0f4c036d1ded0c0967fa3a7ae823aa5ce https://github.com/PrismLibrary/Prism/issues/1211
Library does not seem to work when dependency CommonServiceLocator changes to version 2.0.1 or above
CommonServiceLocator has a breadking change from 2.0.1 onwards where its namespace changes from Microsoft.Practices.ServiceLocation to CommonServiceLocator. [https://github.com/unitycontainer/commonservicelocator/commit/908a30f0f4c036d1ded0c0967fa3a7ae823aa5ce](url) It seems to me this library does not make the change accordingly. I...
I have created a websocket using Owin.Websocket.WebSocketConnection to receive messages from my Frontend. ``` public class MyWebScoket : WebSocketConnection { protected MyWebScoket(int maxMessageSize = 65536) : base(maxMessageSize) { //logic }...
Is it posible to have an example of implementation of > public override bool AuthenticateRequest(IOwinRequest request) And how a client invokes this method
I'm seeing a lot of `WebSocketException` being thrown after OnClose is called. Since it's after the connection has been closed it doesn't seem to be affecting the functionality of the...
Hello, Thanks for the great library. I got it to work on self host - web API - windows, but when I deploy the self host on mono, I start...
> WebSocket connection to 'domain/ws' failed: Error during WebSocket handshake: Unexpected response code: 403 I am trying to understand this error. It is not appearing on localhost at all, so,...
During a debugging session (where everything is slow) I could verify a situation that lead to the OnDisconnected not being ever sent. - The channel was broken because of a...