I'm developing a chat that uses APNS.
To do that I'm using MoonAPNS wrapper in C#.
I've developed an ASP web service that uses this dll.
I've followed all the steps in the tutorial where I found the code.
I'm using the notification over an app with development sign.
I've been debugging and in the method: SendQueueToapple in this line:
_apnsStream.BeginRead(response, 0, 6, ReadResponse, new MyAsyncInfo(response, _apnsStream));
I'm getting this error:
InnerException: Unknown error processing certificate. -2146893017
I've reviewed the certificate, the device token and everything is ok according with the tutorial, but I'm still getting this error.
Anyone has idea what I'm doing wrong?
Thanks.