IOS推送通知中的问题 - 身份验证失败,因为远程方已关闭传输流

Wad*_*hal 6 push-notification apple-push-notifications ios asp.net-mvc-4

我使用以下代码进行推送通知.

public void PushNotificationIOS(string message, string registrationKey)
{

    string deviceID = registrationKey; 
    int port = 2195;
    String hostname = System.Configuration.ConfigurationManager.AppSettings["HostName"];//"gateway.sandbox.push.apple.com";
    string certPath = string.Empty;
    certPath = System.Configuration.ConfigurationManager.AppSettings["CertificatePath"] + System.Configuration.ConfigurationManager.AppSettings["Cer
    String certificatePath = System.Web.HttpContext.Current.Server.MapPath(certPath);
    string certPassword = System.Configuration.ConfigurationManager.AppSettings["CertificatePassword"];
    TcpClient client = new TcpClient(hostname, port);
    try
    {

        X509Certificate2 clientCertificate = new X509Certificate2(System.IO.File.ReadAllBytes(certificatePath), certPassword);
        X509Certificate2Collection certificatesCollection = new X509Certificate2Collection(clientCertificate);
        SslStream sslStream = new SslStream(client.GetStream(), false, new RemoteCertificateValidationCallback(ValidateServerCertificate), null);
        sslStream.AuthenticateAsClient(hostname, certificatesCollection, SslProtocols.Tls, false);
        MemoryStream memoryStream = new MemoryStream();
        BinaryWriter writer = new BinaryWriter(memoryStream);
        writer.Write((byte)0);
        writer.Write((byte)0);
        writer.Write((byte)32);
        writer.Write(StringToByteArray(deviceID.ToUpper()));
        String payload = "{\"aps\":{\"alert\":\"" + message + "\",\"badge\":0,\"sound\":\"default\"}}";
        writer.Write((byte)0);
        writer.Write((byte)payload.Length);
        byte[] b1 = System.Text.Encoding.UTF8.GetBytes(payload);
        writer.Write(b1);
        writer.Flush();
        byte[] array = memoryStream.ToArray();
        sslStream.Write(array);
        sslStream.Flush();
        client.Close();
    }
    catch (System.Security.Authentication.AuthenticationException ex)
    {

        client.Close();
    }

}
Run Code Online (Sandbox Code Playgroud)

我收到以下错误身份验证失败,因为远程方已关闭传输流.在Trace上,我得到了以下内容

System.Net.Security.SslState.CheckThrow(Boolean authSucessCheck)
   at System.Net.Security.SslState.get_SecureStream()
   at System.Net.Security.SslStream.Write(Byte[] buffer)
Run Code Online (Sandbox Code Playgroud)

我尝试了各种帖子中提到的所有内容,但无法解决问题.

Pra*_*ngh 1

确保证书有效且未损坏。您可以重新生成证书以确保万无一失。

尝试提供 like 的所有选项SecurityProtocolType

sslStream.AuthenticateAsClient(hostname, certificatesCollection, SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls, false);
Run Code Online (Sandbox Code Playgroud)

SecurityProtocolType.Tls12也可以协商传输层安全性 1.1 或更低版本,但请尝试所有选项以确保安全。

在此输入图像描述

有关更多详细信息,请SecurityProtocolType参阅:

https://msdn.microsoft.com/en-us/library/system.net.securityprotocoltype(v=vs.110).aspx