// This sample show object information $client = new SoapClient(SOAP_SERVER_URL); if ($client->getAvailability()) { var_dump($client->getObjInfos( 8, 'L4%', // The name begin by "L4" 1, 'CFEPS', // From CFEPS 1, 'classical', // Search for classical objects 2, 30, 40, // A must be between 30 et 40 0, NULL, NULL, 3, 5, NULL, // inclinaison must be less than 5 0, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 5, 1000, NULL, // arc length must be larger than 1000 0, NULL, NULL)); } else { echo 'Database is temporarily unavailable'; }