// This sample show every object from CFEPS with orbital inclination between 4 and 5 and with arc length larger than 1000. The output format is votable XML file. $client = new SoapClient(SOAP_SERVER_URL); if ($client->getAvailability()) { echo htmlentities($client->getObjInfosFormat( 'votable', // Set output format to votable 0, NULL, 1, 'CFEPS', // From CFEPS 0, NULL, 0, NULL, NULL, 0, NULL, NULL, 2, 4.0, 5.0, // inclination between 4 and 5 0, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, 5, 1000.0, NULL, // arc length is more than 1000 0, NULL, NULL)); } else { echo 'Database is temporarily unavailable'; }