Lines Matching refs:soap
2 Bug #41097 (ext/soap returning associative array as indexed without using WSDL)
7 function test($soap, $array) {
8 $soap->test($array);
9 echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map\n":"Array\n";
13 $soap = new SoapClient(null, array('uri' => 'http://uri/', 'location' => 'test://', 'exceptions' =>…
14 test($soap, array('Foo', 'Bar'));
15 test($soap, array(5 => 'Foo', 10 => 'Bar'));
16 test($soap, array('5' => 'Foo', '10' => 'Bar'));
17 $soap->test(new SoapVar(array('Foo', 'Bar'), APACHE_MAP));
18 echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map\n":"Array\n";
19 $soap->test(new SoapVar(array('Foo', 'Bar'), SOAP_ENC_ARRAY));
20 echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map\n":"Array\n";