Lines Matching refs:client
32 $client = new LocalSoapClient(__DIR__."/bug31695.wsdl");
33 $client->Test("str");
34 $client = new LocalSoapClient(__DIR__."/bug31695.wsdl", array("location"=>"test://1"));
35 $client->Test("str");
36 $client->__soapCall("Test",
39 $old = $client->__setLocation("test://3");
41 $client->Test("str");
42 $client->Test("str");
43 $client->__setLocation($old);
44 $client->Test("str");
45 $old = $client->__setLocation();
46 $client->Test("str");
47 $client->__setLocation($old);
48 $client->Test("str");
49 $client->__setLocation(null);
50 $client->Test("str");
51 var_dump($client->__setLocation());