Carefully follow MDM_Protocol .
If you use the following link: http://www.softhinker.com/in-the-news/iosmdmvendorcsrsigning Then check out a few things.
remove the passphrase from customerPrivateKey.pem using this command
openssl rsa -in customerPrivateKey.pem -out PlainKey.pem
Then merge your APNS certificate (e.g. CustomerCompanyName.pem) downloaded from the https://identity.apple.com/pushcert/ portal using this command
cat CustomerCompanyName.pem PlainKey.pem > PlainCert.pem
Now this PlainCert.pem file can be used on your server as an APNS / MDM certificate.
If you still have a problem, enter your device log here.
User97693321
source share