updates and such
[glcas.git] / unittests / soaptest.php
1 <?php
2 require_once("../lib/lib.php");
3
4 ini_set("soap.wsdl_cache_enabled", "0");
5
6 $client = new SoapClient("https://localhost/src/eclipse-workspace/glcas/www/soap.php?wsdl", array("trace" => 1));
7
8 print_r($client->__getFunctions());
9
10 $mk = new dataContainer();
11 $mk->stringpass[0] = "mix";
12 $mk->stringpass[1] = "me";
13
14 $lk = $client->status($mk);
15
16 print_r($lk);
17 ?>