Searched refs:SoapClient (Results 1 – 25 of 342) sorted by relevance
12345678910>>...14
/php-src/ext/soap/tests/SoapClient/ |
H A D | missing-options-non-wsdl-mode.phpt | 2 SoapClient in non WSDL mode without required options 8 class ExtendedSoapClient extends SoapClient {} 12 $client = new SoapClient(null); 25 $client = new SoapClient(null, $options); 38 $client = new SoapClient(null, $options); 51 SoapFault: SoapClient::__construct(): 'location' and 'uri' options are required in nonWSDL mode 52 SoapFault: SoapClient::__construct(): 'location' and 'uri' options are required in nonWSDL mode 54 SoapFault: SoapClient::__construct(): 'uri' option is required in nonWSDL mode 55 SoapFault: SoapClient::__construct(): 'uri' option is required in nonWSDL mode 57 SoapFault: SoapClient::__construct(): 'location' option is required in nonWSDL mode [all …]
|
H A D | invalid-encoding-option.phpt | 2 SoapClient constructor with an invalid encoding option 8 class ExtendedSoapClient extends SoapClient {} 15 $client = new SoapClient($wsdl, $options); 28 SoapFault: SoapClient::__construct(): Invalid 'encoding' option - 'non-sense' 29 SoapFault: SoapClient::__construct(): Invalid 'encoding' option - 'non-sense'
|
H A D | setSoapHeaders-invalid-headers.phpt | 2 SoapClient::__soapCall with invalid headers 9 class ExtendedSoapClient extends SoapClient { 28 Fatal error: SoapClient::__setSoapHeaders(): Invalid SOAP header in %s on line %d
|
H A D | soapCall-invalid-headers.phpt | 2 SoapClient::__soapCall with invalid headers 9 class ExtendedSoapClient extends SoapClient { 28 Fatal error: SoapClient::__soapCall(): Invalid SOAP header in %s on line %d
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug50698_2.phpt | 2 Request #50698_2 (SoapClient should handle wsdls with some incompatible endpoints -- EDGECASE: Larg… 10 new SoapClient(__DIR__ . '/bug50698_2.wsdl'); 11 …echo "Call: \"new SoapClient(__DIR__.'/bug50698_2.wsdl');\" should throw an exception of type 'Soa… 16 …echo "Call: \"new SoapClient(__DIR__.'/bug50698_2.wsdl');\" threw a SoapFault with an incorrect fa…
|
H A D | bug50698_3.phpt | 2 Request #50698_3 (SoapClient should handle wsdls with some incompatible endpoints -- EDGECASE: Larg… 10 new SoapClient(__DIR__ . '/bug50698_3.wsdl'); 11 …echo "Call: \"new SoapClient(__DIR__.'/bug50698_3.wsdl');\" should throw an exception of type 'Soa… 16 …echo "Call: \"new SoapClient(__DIR__.'/bug50698_3.wsdl');\" threw a SoapFault with an incorrect fa…
|
H A D | bug77088.phpt | 2 Bug #77088 (Segfault when using SoapClient with null options) 11 $sClient = new SoapClient("test.wsdl", $options); 22 string(%d) "SoapClient::__construct(): Argument #2 ($options) must be of type array, null given" 42 string(10) "SoapClient"
|
H A D | bug46760.phpt | 2 Bug #46760 (SoapClient doRequest fails when proxy is used) 8 $client = new SoapClient(null, array('proxy_host' => "localhost", 19 ["_proxy_port":"SoapClient":private]=>
|
H A D | bug75306.phpt | 2 Bug #75306 (Memleak in SoapClient) 10 $client = new SoapClient(__DIR__ . "/../test.wsdl", $options); 14 $client = new SoapClient(__DIR__ . "/../test.wsdl", $options);
|
H A D | bug54911.phpt | 2 Bug #54911 (Access to a undefined member in inherit SoapClient may cause Segmentation Fault) 7 class XSoapClient extends SoapClient { 19 #1 %sbug54911.php(8): SoapClient->__soapCall('', Array)
|
H A D | bug69085.phpt | 2 Bug #69085 (SoapClient's __call() type confusion through unserialize()) 11 class MySoapClient extends SoapClient { 21 Fatal error: Uncaught TypeError: Cannot assign int to property SoapClient::$__default_headers of ty…
|
H A D | bug50698_1.phpt | 2 Request #50698_1 (SoapClient should handle wsdls with some incompatible endpoints) 9 new SoapClient(__DIR__ . '/bug50698_1.wsdl');
|
H A D | bug50698_4.phpt | 2 Request #50698_4 (SoapClient should handle wsdls with some incompatible endpoints) 9 new SoapClient(__DIR__ . '/bug50698_4.wsdl');
|
H A D | bug77945.phpt | 2 Bug #77945: Segmentation fault when constructing SoapClient with WSDL_CACHE_BOTH 9 $client = new SoapClient(__DIR__ . '/bug29236.wsdl', [
|
H A D | bug80672.phpt | 2 Bug #80672 Null Dereference in SoapClient 8 $client = new SoapClient(__DIR__ . "/bug80672.xml");
|
H A D | bug46427.phpt | 2 Bug #46427 (SoapClient() stumbles over its "stream_context" parameter) 10 return new SoapClient(NULL, array(
|
H A D | bug70469.phpt | 2 Bug #70469 (SoapClient should not generate E_ERROR if exceptions enabled) 8 $x = new SoapClient('http://i_dont_exist.com/some.wsdl');
|
H A D | bug49898.phpt | 2 Test for bug #49898: SoapClient::__getCookies() implementation 9 $client = new SoapClient(null, array('uri' => 'mo:http://www.w3.org/', 'location' => 'http://some.u…
|
H A D | bug69137.phpt | 2 SOAP Bug #69137 - Peer verification fails when using a proxy with SoapClient 26 $client = new SoapClient($testServiceWsdl); 34 $client = new SoapClient($testServiceWsdl, $parameters);
|
H A D | bug44811.phpt | 2 Bug #44811 (Improve error messages when creating new SoapClient which contains invalid data) 12 $x = new SoapClient('https://php.net');
|
/php-src/ext/zend_test/tests/ |
H A D | observer_error_04.phpt | 16 $client = new SoapClient('foo'); 40 <!-- init SoapClient::__construct() --> 41 <SoapClient::__construct> 43 </SoapClient::__construct:NULL>
|
/php-src/ext/soap/tests/ |
H A D | ssl_method_deprecation.phpt | 8 new SoapClient(null, [ 16 Deprecated: SoapClient::__construct(): The "ssl_method" option is deprecated. Use "ssl" stream cont…
|
H A D | gh12392.phpt | 2 GH-12392 (Segmentation fault on SoapClient::__getTypes) 8 $client = new SoapClient(__DIR__ . "/gh12392.wsdl", ['cache_wsdl' => WSDL_CACHE_NONE]);
|
/php-src/ext/libxml/tests/ |
H A D | bug79191.phpt | 2 Bug #79191 (Error in SoapClient ctor disables DOMDocument::save()) 9 new \SoapClient('does-not-exist.wsdl');
|
/php-src/ext/soap/ |
H A D | soap_arginfo.h | 159 ZEND_METHOD(SoapClient, __construct); 160 ZEND_METHOD(SoapClient, __call); 161 ZEND_METHOD(SoapClient, __soapCall); 162 ZEND_METHOD(SoapClient, __getFunctions); 163 ZEND_METHOD(SoapClient, __getTypes); 164 ZEND_METHOD(SoapClient, __getLastRequest); 168 ZEND_METHOD(SoapClient, __doRequest); 169 ZEND_METHOD(SoapClient, __setCookie); 170 ZEND_METHOD(SoapClient, __getCookies); 171 ZEND_METHOD(SoapClient, __setSoapHeaders); [all …]
|
Completed in 21 milliseconds
12345678910>>...14