Tagged Questions
1
vote
2answers
183 views
sslStream.Read problem: all bytes read are 0
TcpClient client = new TcpClient("69.147.112.160", 443);
SslStream sslStream = new SslStream(client.GetStream(),false,
ValidateServerCertificate,null);
try
{
...
1
vote
1answer
1k views
SslStream on TCP Server fails to validate client certificate with RemoteCertificateNotAvailable
This question is all about solving a SslPolicyError.RemoteCertificateNotAvailable error.
I have developed a TCP Server with SSLStream and a TCP Client for the other end.
I authenticate the server ...
0
votes
0answers
229 views
SslStream equivelent of TcpClient.Available?
Based on the advice of @Len-Holgate in this question, I'm asynchronously requesting 0-byte reads, and in the callback, accept bytes the avaialble bytes with synchronous reads, since I know the data is ...