mdm

Apple MDM Vendor CSR Signing

南楼画角 提交于 2019-11-27 10:39:27
问题 I hit ' Invalid Certificate Signing Request ' when uploading plist to https://identity.apple.com/pushcert/ , and below are steps I used to generate plist : As a vendor, create vendor CSR using KeyChain Access of the MacBook to upload to member centre to generate MDM signing certificate, and export private key from KeyChain Access in p12 format, say vendor.p12 Create customer CSR, using Openssl : - openssl genrsa -des3 -out customerPrivateKey.pem 2048 - openssl req -new -key customerPrivateKey

MDM workflow in Android

假装没事ソ 提交于 2019-11-27 10:34:19
问题 Can any one help me out how to do MDM Integration in Android from client and server prespective? I want to do an enterprise application which having lock and wipe functionality. I have no any clue of workflow of MDM in Android. Thanks. 回答1: Android Device Admin API will do both things what you want to do (lock/wipe device and even more). An example is given and also you can find this complete source code in your Android SDK directory. Now as client server perspective: You have to implement

How to develop iPhone MDM Server?

别来无恙 提交于 2019-11-27 10:26:26
I just read about Mobile Device Management Server for iOS devices, but all documentations refers to "third party MDM Server". My problem is how can I develop one "third party MDM Server" myself ? I failed to find any doc about this. teriiehina You have the easy way and the hard way. Easy way : OSX Lion Server ships with a "Profile Manager" section which offers the whole MDM process (with the SCEP stack). This service is made up of ruby scripts so you can peek to see how it's done. Hard way : implement your Profile Manager (profile generation and management), implement your Push server, add the

The identity certificate for com.xyz.profile.mdm could not be found?

南笙酒味 提交于 2019-11-27 02:28:09
问题 I've bumped into this issue while trying to install a MDM profile onto an ipad as the final part of OTA enrollment. NSError: Desc : The identity certificate for com.xyz.profile.mdm1 could not be found. US Desc: The identity certificate for com.xyz.profile.mdm1 could not be found. Domain : MCMDMErrorDomain Code : 12005 Type : MCFatalError Params : ( "com.xyz.profile.mdm1" ) Anyone have idea what piece of information i'm missing? This is when I try to install a MDM payload onto the IOS device

iOS MDM push notification using Php, not working

♀尐吖头ヾ 提交于 2019-11-26 21:44:47
问题 i know it's duplicate of this, but this one is not working for me. My Php code to send notification is // Put your device token here (without spaces): $deviceToken = '6hPQc2HvdA20XGlQkznJxlappCrzm3kJccljjOsgF2k=\n'; #base64 encoded // Put your private key's passphrase here: $passphrase = 'Temp1234'; $ctx = stream_context_create(); stream_context_set_option($ctx, 'ssl', 'local_cert', './Certificates_push_dev_new.pem'); stream_context_set_option($ctx, 'ssl', 'cafile', './entrust_2048_ca.cer');

Distribute Custom B2B iOS app through Apple Volume Purchase Program?

丶灬走出姿态 提交于 2019-11-26 21:04:34
问题 Our requirement is to distribute iOS app for more than 1000+ users within the Organization. My question : Can we make Distribution iPA using iOS Developer Provisioning Profile (As We have $99 Apple Account Not Enterprise Account) and share it with VPP and Apple MDM (Memory Device Management) or should i opt for Enterprise Apple account ? **Note1 - Dont want to use Adhoc Provisioning Profile as it require all devices registered in apple account and we have 1000+ Apple Devices. **Note2 -

APNS notifications not reaching devices enrolled in Apple MDM

痴心易碎 提交于 2019-11-26 19:46:58
问题 Apple MDM is used. It is MDM using APNs. The topic of mobileconfig is the same as the thing of Subject of APSP-XXX.pem. The character string of a device token and PushMagic reached the MDM server after the setup of mobileconfig. I sent wording of a telegram for device tokens using APNs. It is replacing by the character string of PushMagic. Although {"mdm":"xxxxxxxxxxxxx-xxxx-xxxx-xxxx"} is sent via APNs from the MDM server, iPhone is not reached. Why is it? 回答1: Follow MDM_Protocol pdf very

Using MDM To Configure An Enterprise App Via NSUserDefaults

核能气质少年 提交于 2019-11-26 15:52:11
问题 I'm using Profile Manager in OS X Server 3.0.1 on 10.9 to push my enterprise app to a managed device running iOS7. This is working well, and I am also able to push device configuration settings. My roadblock is how to take the information offered in Apple's example project, ManagedAppConfig, and apply it to an app distributed by Profile Manager. ManagedAppConfig provides a simple plist which is supposed to be used to put data into an app's NSUserDefaults, which is then used for app

generate MDM certificate

£可爱£侵袭症+ 提交于 2019-11-26 15:28:16
问题 I am new to iOS development. I have to create MDM certificate for utilize default iOS MDM capabilities. I have gone through the documents ,how to generate APNS certificate for MDM Server,but I am not getting clear idea how to generate MDM Certificate which can be used to provide MDM service for all the devices registered with the MDM server. 回答1: To MDM capabilities of iOS you need to get MDM certificate using your Enterprise developer account.The generated APNS certificate for MDM will be

How to develop iPhone MDM Server?

允我心安 提交于 2019-11-26 15:12:11
问题 I just read about Mobile Device Management Server for iOS devices, but all documentations refers to "third party MDM Server". My problem is how can I develop one "third party MDM Server" myself ? I failed to find any doc about this. 回答1: You have the easy way and the hard way. Easy way : OSX Lion Server ships with a "Profile Manager" section which offers the whole MDM process (with the SCEP stack). This service is made up of ruby scripts so you can peek to see how it's done. Hard way :