<?php$client = new SoapClient( null, array( "location" => "https://PRODUCTION/soap/cmd.php", "uri" => "http://PRODUCTION/soap" ) );$params = array ( "data" => array ( "login" => "demo", "password" => "password", ));$response = $client->__call("Login",$params);$token = $response["data"]["ssid"];unset($params);$params = array ( "data" => array ( "ssid" => $token, "object" => "contact", "id" => "NIC", ));$response = $client->__call("Check_Object",$params);?> INPUT: [data] => Array ( [ssid] => 29ae201e12b466c7347a29 [object] => �contact [id] => NIC ) OUTPUT: [status] => ok [data] => Array ( [id] => NIC [avail] => �1 )
<?php$client = new SoapClient( null, array( "location" => "https://PRODUCTION/soap/cmd.php", "uri" => "http://PRODUCTION/soap" ) );$params = array ( "data" => array ( "login" => "demo", "password" => "password", ));$response = $client->__call("Login",$params);$token = $response["data"]["ssid"];unset($params);$params = array ( "data" => array ( "ssid" => $token, "object" => "contact", "id" => "NIC", ));$response = $client->__call("Check_Object",$params);?>