[ // set some SSL/TLS specific options 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true ] ]); $client = new SoapClient(null, array('location' => $soap_location, 'uri' => $soap_uri, 'trace' => 1, 'exceptions' => 1, 'stream_context' => $context)); try { if($session_id = $client->login($username, $password)) { echo 'Logged successfull. Session ID:'.$session_id.'
'; } //* Set the function parameters. $server_id = 1; $result = $client->server_config_set($session_id, $server_id, 'server', 'migration_mode', 'y'); print_r($result); echo "
"; if($client->logout($session_id)) { echo 'Logged out.
'; } } catch (SoapFault $e) { echo $client->__getLastResponse(); die('SOAP Error: '.$e->getMessage()); } ?>