APNS P12 证书停止工作?

APNS P12 certificate stopped working?

我正在使用 ASP.NET 服务器向 APNS 发送推送通知。我正在使用 PushSharp 库。突然,推送通知停止工作。我得到了这个例外,

The maximum number of Send attempts to send the notification was reached

我搜索了一下,发现APNS已经不支持SSL v3了。 https://developer.apple.com/news/?id=10222014a 而且我发现最新版本的库也在使用 Tls。所以我更新了图书馆。但现在我得到了,

System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.

我的 .p12 证书有效期为 3/4/2014 到 3/4/2015。当 APNS 支持 SSL v3 时,我生成了 .p12 证书文件。我需要更新 p12 证书吗?

我已经更新了 APNS 证书(.p12 文件)和 PushSharp 库,它们现在使用 TLS 而不是 SSL v3.0(易受 POODLE 攻击)。现在问题已解决。