Skip to content
openvz_ostemplate_update.php 928 B
Newer Older
require 'soap_config.php';


$client = new SoapClient(null, array('location' => $soap_location,
		'uri'      => $soap_uri,
		'trace' => 1,
		'exceptions' => 1));
	if($session_id = $client->login($username, $password)) {
		echo 'Logged successfull. Session ID:'.$session_id.'<br />';
	}

	//* Parameters
	$ostemplate_id = 2;
	$client_id = 1;


	//* Get the os template record
	$ostemplate_record = $client->openvz_ostemplate_get($session_id, $ostemplate_id);

	//* Change the status to inactive
	$ostemplate_record['active'] = 'n';
	$affected_rows = $client->openvz_ostemplate_update($session_id, $client_id, $ostemplate_id, $ostemplate_record);

	echo "Number of records that have been changed in the database: ".$affected_rows."<br>";
	if($client->logout($session_id)) {
		echo 'Logged out.<br />';
	}
} catch (SoapFault $e) {
	echo $client->__getLastResponse();
	die('SOAP Error: '.$e->getMessage());
}

?>