I have this server-side push notification (C #) system since 2013 and have never had a problem until now in January when users no longer receive the notifications. However, what I did was to generate 1 new certificate and added it to the service and I entered the correct password, however when the second method call is made
PushNotification pushNotification = new PushNotification(false, path, password);
pushNotification.P12File = path;
pushNotification.P12FilePassword = password;
List<String> result = pushNotification.SendToApple(payLoadsList);
I get the following error: Call SSPI failed, see inner exception.
And in the inner exception I have this
The Local Security Authority can not be contacted
Can someone help me here?