Notificação pushsharp apple Uma chamada para SSPI falhou erro

Estou usando o PushSharp para enviar o Apple Push Notification em C #, eu tenho meu arquivo .pem de produção e sua senha. Abaixo está o meu trecho de código. Estou sempre recebendo este erro ..

"A call to SSPI failed, see inner exception. ---> System.ComponentModel.Win32Exception: The message received was unexpected or badly formatted-" 

OU

"System.IO.IOException: Authentication failed because the remote party has closed the transport stream."

Eu tentei quase todos os códigos disponíveis na net.Mesmo tentei MoonAPNS mas mesmo erro, para script personalizado também estou recebendo este erro de falha SSPI. Eu uso o mesmo arquivo .pem e executar um script php para enviar notificação push para APN do mesmo servidor, ele funciona.

var push = new PushBroker();
var appleCert = File.ReadAllBytes(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "ck.pem"));
 push.RegisterAppleService(new ApplePushChannelSettings(false, appleCert, "pwd")); 
 push.QueueNotification(new AppleNotification()
                                           .ForDeviceToken("XXXXXXXXXXXXXXX")
                                           .WithAlert("Hello World!")
                                           .WithBadge(7)
                                           .WithSound("sound.caf"));


                LogManager.Info("Waiting for Queue to Finish..");
                push.StopAllServices();

Por favor, ajude Obrigado antecipadamente

questionAnswers(1)

yourAnswerToTheQuestion