I want to develop a solution manager iPhone.As I know MDM can take it.But how can I make MDM Server.How to generate/install iPhone MDM profiles.
What should I do?
Please help me.
Best regards!
I want to develop a solution manager iPhone.As I know MDM can take it.But how can I make MDM Server.How to generate/install iPhone MDM profiles.
What should I do?
Please help me.
Best regards!
To build the MDM server you can go through the below mentioned steps
1)Follow MDM_Protocol pdf .
2)Follow this page: http://www.softhinker.com/in-the-news/iosmdmvendorcsrsigning
Then verify few things.
remove the passphrase from customerPrivateKey.pem using this command
openssl rsa -in customerPrivateKey.pem -out PlainKey.pem Then merge your APNS certificate (for example CustomerCompanyName.pem) downloaded from the portal https://identity.apple.com/pushcert/ using this command
cat CustomerCompanyName.pem PlainKey.pem > PlainCert.pem Now this PlainCert.pem file can be used in your server as APNS/MDM certificate.
3) Follow these links link0 ,link1,link2 ,link3 and other questions also related to MDM in stack overflow.