Unknown macro: {next_previous_link3}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

Follow the instructions below to generate the MDM Apple Push Notification Service (APNS) certificate:

The MDM APNS certificate will be referred to as the MDM certificate in the EMM Console.

  1. Create a Certificate Signing Request (CSR) file (for example,  customer.csr)  from the MDM server using your private key. Keep your private key and CSR file in a safe location for further reference.

    openssl genrsa -des3 -out customerPrivateKey.pem 2048
    openssl req -new -key customerPrivateKey.pem -out customer.csr
  2. Submit the CSR file to WSO2 via our site in order to obtain the signed CSR file in .plist format.
  3. Go to the Apple Push Certificate Portal at https://identity.apple.com/pushcert/ and login with your customer account details.
    You do not need to have an enterprise account for this purpose.
  4. Upload the the encoded .plist file and download the generated MDM signing certificate (MDM_Certificate.pem).
    The MDM signing certificate, is a certificate for 3rd party servers provided by Apple. 
  5. Note down the USERID (TOPIC ID) from the MDM signing certificate (MDM_Certificate.pem) as it will be used later in the configuration.
    For example, you can use the following URL to decode the file to obtain the USERID
    http://www.sslshopper.com/certificate-decoder.html
  6. Remove the password from the your private key file (e.g.,  customerPrivateKey.pem).
    openssl rsa -in customerPrivateKey.pem -out customerKey.pem 
  7. Merge the customer key file that was derived in the latter step, with the MDM signing certificate to generate the MDM Apple Push Notification Service (APNS) Certificate.
    For example, merge the customerKey.pem file with the MDM_Certificate.pem file to generate the MDM_APNSCert.pem file.
    cat MDM_Certificate.pem customerKey.pem > MDM_APNSCert.pem
  8. Open the MDM Apple Push Notification service (APNs) Certificate (MDM_APNSCert.pem) and ensure that there is a line break between the contents of the two files.
  9. Convert the MDM_APNSCert.pem file to the MDM_APNSCert.pfx file. You will need to provide a password when converting the file. Thereafter, follow the steps mentioned under iOS Settings.
    openssl pkcs12 -export -out MDM_APNSCert.pfx -inkey customerPrivateKey.pem -in MDM_APNSCert.pem

  • No labels