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