我正在尝试通过 SslStream / Tcp 客户端连接到服务器。每次我这样做时都会收到一个异常说明:在 AuthenticateAsClient 行的传输流中收到了意外的 EOF 或 0 字节。
我已启用跟踪日志记录,并在日志中收到以下两个错误:
System.Net 信息:0 : [12260] SecureChannel#66702757::.ctor(hostname=xxx.xx.xx.xxx, #clientCertificates=0, encryptionPolicy=RequireEncryption)
System.Net 信息:0:[12260] SecureChannel#66702757 - 剩下 0 个客户端证书可供选择。
有人可以就如何解决这个问题给我任何建议吗?不知道为什么,但如果这有什么不同,它就会扔到外面。
try
{
TcpClient client = new TcpClient(_host, _port);
// _stream = client.GetStream();
_stream = new SslStream(client.GetStream(), false, ValidateServerCertificate, null);
_sslReader = new StreamReader(client.GetStream());
try
{
_stream.AuthenticateAsClient(_host);
}
catch (AuthenticationException e)
{
client.Close();
return;
}
HandleConnect();
}
catch (Exception e)
{
_logger.Error(e.BuildExceptionInfo());
}
public bool ValidateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
{
if (sslPolicyErrors == SslPolicyErrors.None || sslPolicyErrors == SslPolicyErrors.RemoteCertificateNameMismatch)
return true;
return false;
}