Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have followed steps mentioned in MDM protocol PDF provided by Apple to generate certs, setting up MDM server and configuring the IPCU.

I am able to get the Token and PushMagic from device on installation of the .mobileconfig file.

The issue occurs in next step where i send the MDM push notification(Wakeup call) in following formate: {"mdm":"80369651-5802-40A2-A0AE-FCCF02F99589"}.

I dont receive any "IDEAL" status plist from device which should be received according to the MDM Protocol pdf.

Here is the code i use.

ini_set('display_errors', 'On');
error_reporting(E_ALL);
$apnsPort = 2195;
$apnsCert = 'PlainCert.pem' ;
$PushMagic = '5***-****-****-****-*********';
$ApnsTokenB64 = "s------------------------------------------4=";

$decoded = base64_decode($ApnsTokenB64);

$feedback = 'ssl://feedback.push.apple.com:2196';
$ssl = 'ssl://gateway.push.apple.com:2195';

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', $apnsCert);
$fp = stream_socket_client($ssl, $error, $errorString, 60, STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT, $ctx);

if(!$fp){
    echo "NOTICE: Failed to connect to APNS: {$error} {$errorString}."."<br>";
}
else {
    $message= json_encode(array('mdm' => $PushMagic));
    $msg = chr(0).chr(32).$decoded.chr(strlen($message)).$message;
    $fwrite = fwrite($fp, $msg);
    if(!$fwrite) {
        echo "ERROR: Failed writing to stream."."<br>";
    }
    else {
        echo "Push Notification sent."."<br>";
    }
}
fclose($fp);



$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', $apnsCert);
stream_context_set_option($ctx, 'ssl', 'verify_peer', false);
$feedfp = stream_socket_client($feedback, $error, $errorString, 60, STREAM_CLIENT_CONNECT, $ctx);

if(!$feedfp) echo "NOTICE: Failed to connect to device: {$error} {$errorString}.";


while ($devcon = fread($feedfp, 38)){

    $arr = unpack("H*", $devcon);
    $rawhex = trim(implode("", $arr));
    $token = substr($rawhex, 12, 64);

    if(!empty($devcon)){
        //$this->_unregisterDevice($token);
        echo "NOTICE: Unregistering Device Token: {$token}."."<br>";
    }else{
        echo "NOTICE: No Feedback."."<br>";
    }
}
fclose($feedfp);

Nothing appears in device log also so i am at a lost.

Any help would be appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.