Lines Matching refs:iop
14 $iop = new Interop_Client(); variable
18 global $iop;
19 $iop->getEndpoints($test);
22 foreach ($iop->endpoints as $epname => $epinfo) {
31 global $iop;
73 global $iop, $PHP_SELF;
77 foreach ($iop->tests as $test) {
95 $iop->currentTest = $_POST['test']; // see $tests above
96 $iop->paramType = $_POST['paramType']; // 'php' or 'soapval'
97 $iop->useWSDL = $_POST['useWSDL']; // 1= do wsdl tests
98 $iop->numServers = 0; // 0 = all
99 $iop->specificEndpoint = $_POST['endpoint']; // test only this endpoint
100 $iop->testMethod = $_POST['method']=='ALL'?'':$_POST['method']; // test only this method
101 $iop->skipEndpointList = array(); // endpoints to skip
102 $iop->nosave = 0; // 1= disable saving results to database
104 $iop->show = 0;
105 $iop->debug = 0;
106 $iop->showFaults = 0; // used in result table output
108 $iop->doTest(); // run a single set of tests using above options