python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Connect Flutter to SslStrem in C#
I have this c# server using SslStream:
TcpListener Server = new TcpListener(IPAddress.Any, 13001);
Server.Start();
var client = Server.AcceptTcpClient();
var stream = client.GetStream();
SslStream ss...
AdamA
Votes: 0
Answers: 1
Why is calling SslStream.AuthenticateAsServer and SslStream.AuthenticateAsClient with the same certificate in the same process not supported?
I recently ran into an issue when converting socket communication to use System.Net.Security.SslStream instead of NetworkStream. This conversion was targeting a solution of .Net Framework 4.8 project...
smarcaurele
Votes: 0
Answers: 1
Powershell failing during call to AuthenticateAsClient when only TLS 1.2 available on server
I am trying to create a secure socket with Powershell, but it fails during the call to AuthenticateAsClient with a variety of errors like
Unable to read data from the transport connection: An existi...
Code39
Votes: 0
Answers: 1
Cannot access a disposed object. Object name: 'SslStream'
We have an service bus triggered Azure function which makes a call to an http triggered Azure function and from times to times we are experiencing the error below,
The operation was canceled. The rea...
Konstantinos Ventouris
Votes: 0
Answers: 1