C# iPhone push server?

前端 未结 6 974
一生所求
一生所求 2020-12-22 18:16

Im attempting to write a push server for the iPhone in C#. I have the following code:

        // Create a TCP/IP client socket.
        using (TcpClient clie         


        
6条回答
  •  既然无缘
    2020-12-22 18:50

    From Zenox's comment: use a different version of AuthenticateAsClient

    sslStream.AuthenticateAsClient("gateway.sandbox.push.apple.com", clientCertificateCollection, SslProtocols.Default, false);

提交回复
热议问题