We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apple no longer allows authenticating to the APNS via SSL3. TLS is now the only supported authentication type.
Moon-APNS still authenticates via SSL3 and requires a minor change to switch to TLS.
Currently: _apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Ssl3, false); Updated line: _apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Tls, false);
The text was updated successfully, but these errors were encountered:
thanks @patch-e save my day 😄
Sorry, something went wrong.
Hi patch-e, I have done the same. But I did not receive any notification. also no error is occuerd
I tried the update with:
_apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Tls, false);
and
_apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Default, false);
and still I'm getting the "Authentication failed because the remote party has closed the transport stream" error. Can anybody help me?
Anybody here?
No branches or pull requests
Apple no longer allows authenticating to the APNS via SSL3. TLS is now the only supported authentication type.
Moon-APNS still authenticates via SSL3 and requires a minor change to switch to TLS.
Currently:
_apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Ssl3, false);
Updated line:
_apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Tls, false);
The text was updated successfully, but these errors were encountered: