There are 3 steps in an APNs communication:
- Your app registers to receive APNs in your appDelegate within your iOS. This will give you a deviceToken that you should use to send notifications.
- Your app sends the deviceToken to your management server
- Your management server connects with Apple APNs server to send the Push Notification
In your case, I understand that your problem is in step 1 because you said that you are having a null device id and the app is not asking you about the APNs permission. Therefore, changing your server certificate or switching from gateway.sandbox.push.apple.com to gateway.push.apple.com is not going to help because the error happens before.
This is clearly a problem with your certificates. You should check that you have done all the required steps in your Apple iOS Provisioning Portal:
- Create an AppId with the bundle identifier of your app. Avoid wildcars such as *.
- Configure your InAppPurchase options for your app (this is not the problem because is used for step 3 in the communication)
- Create a provisioning profile for Distribution which uses the AppId used in 1. (I suspect that this could be your problem), and download it
- Open XCode project settings and check that your archiving operation uses the correct profile donwloaded in 3. Be sure that you pick the correct one when Organizer asks for one. (if the previous step was OK, then this is definetely your problem, so double or triple check it).
If your want to be sure that your binary was generated with the correct profile before submitting it again to AppStore, do the following:
- Open the binary with Finder (first, open the archive at Library/Developer/XCode/Archives/..., right click on it and "Show package contents", navigate to /Products/Applications/youApp, show package contents again),
- Look for the file embedded.mobileprovision and open it with a text editor
- Among the binary content, you should be able to localize a couple of fields called "application-identifier" and "aps-environment". Check they have the correct values.
I bet that if you check your previously archived apps you will see an incorrect profile. This is the only cause for your app not to return a deviceToken. (unless it receives it but it is not correctly sent to your server, a problem in step 2 of the communication above).