0

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!

User97693321
  • 3,336
  • 7
  • 45
  • 69

2 Answers2

1

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.

Community
  • 1
  • 1
User97693321
  • 3,336
  • 7
  • 45
  • 69
0

To communicate with an iOS device, Mobile Device Management (MDM) servers use the Apple Push Notification service.Please check this link .

Musthafa
  • 862
  • 3
  • 12
  • 27