Hello,
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();