iOS:MDM签入样本

iOS:MDM签入样本

问题描述:

我处于移动设备管理实施的早期阶段。我正在使用iOS Enterprise开发者帐户。我已经开始探索MDM Server实现。

I am in early stage of Mobile Device Management implementation. I am in process to get iOS Enterprise developer account.I have already started exploring MDM Server implementation.

我需要一些iOS样本从iOS设备收到的签入数据。这些示例需要了解在服务器端编写API,因为这些API应该适用于Blackberry,Android和其他移动平台。

I need some iOS sample Check-in data which is received from iOS device. These samples are required to understand to write APIs in server side,because these APIs should be common for Blackberry,Android and other mobile platforms.

您可以在 MDM_Protocol中逐步获取所有示例plist 文件也。
例如,在设备签入过程中,当iOS设备通过APNS从MDM服务器接收推送通知时,设备可以以下面的样本plist格式响应MDM Sever。

You can get step by step all the sample plist in the MDM_Protocol document also. For example in device check-in process when iOS device receives the push notification from MDM server via APNS then device can respond to MDM Sever as below sample plist format.

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 
<plist version="1.0"> 
<dict>
    <key>Status</key> 
    <string>Idle</string> 
    <key>UDID</key> 
    <string> [ redacted ] </string>
</dict> 
</plist>