You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented the basic secure websocket server as in the example, but when i try to connect, the server says:
Authentication failed, see inner exception
My code is really simple and with NetCoreServer for example everything works, but they seem to not have permessage deflate:
var dataServer = new DataServer(4223, true); dataServer.SslConfiguration.ServerCertificate = new X509Certificate2(Path.Combine(assemblyFolder, "cert.pfx"), "Password"); dataServer.Start();
The text was updated successfully, but these errors were encountered:
Hello,
I have implemented the basic secure websocket server as in the example, but when i try to connect, the server says:
My code is really simple and with NetCoreServer for example everything works, but they seem to not have permessage deflate:
var dataServer = new DataServer(4223, true); dataServer.SslConfiguration.ServerCertificate = new X509Certificate2(Path.Combine(assemblyFolder, "cert.pfx"), "Password"); dataServer.Start();
The text was updated successfully, but these errors were encountered: