I am at the initial stage of the MDM server implementation, I know that when the MDM server wants to send the MDM command to the iOS device, the server sends a push notification, and then the device responds to the server, the format of which
PUT: / server
<plist version="1.0"> <dict> <key>Status</key> <string>Idle</string> <key>UDID</key> <string> [ redacted ] </string> </dict> </plist>
Then the MDM server replies that the command has been queued for the device, but this line is not clear to me.
I want to know if there is such an iOS application in it, so in what format the server needs to send a command to the iOS device.
user1332780
source share