Home
last modified time | relevance | path

Searched refs:SoapFault (Results 1 – 25 of 44) sorted by last modified time

12

/PHP-7.3/ext/soap/tests/
H A Dbug80672.phpt10 } catch(SoapFault $e) {
H A Dtypemap009.phpt2 SOAP typemap 9: SoapServer support for typemap's from_xml() (SoapFault)
28 throw new SoapFault("Server", "Conversion Failed");
H A Dtypemap010.phpt2 SOAP typemap 10: SoapServer support for typemap's to_xml() (SoapFault)
25 throw new SoapFault("Server", "Conversion Fault");
H A Dtypemap011.phpt2 SOAP Typemap 11: SoapClient support for typemap's from_xml() (SoapFault)
30 throw new SoapFault("Client", "Conversion Error");
43 } catch (SoapFault $e) {
44 $ret = "SoapFault = " . $e->faultcode . " - " . $e->faultstring;
50 string(37) "SoapFault = Client - Conversion Error"
H A Dtypemap012.phpt2 SOAP Typemap 12: SoapClient support for typemap's to_xml() (SoapFault)
23 throw new SoapFault("Client", "Conversion Error");
39 } catch (SoapFault $e) {
40 $ret = "SoapFault = " . $e->faultcode . " - " . $e->faultstring;
46 string(37) "SoapFault = Client - Conversion Error"
H A Dfault_warning.phpt7 $fault = new SoapFault("", "message"); // Can't be an empty string
9 $fault = new SoapFault("Sender", "message");
11 $fault = new SoapFault(null, "message");
15 $fault = new SoapFault(["more-ns", "Sender"], "message"); // two given
19 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
21 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
22 SoapFault
23 SoapFault
25 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
27 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
[all …]
H A Dbug77088.phpt15 catch(SoapFault $e)
23 object(SoapFault)#%d (%d) {
H A Dserver028.phpt12 return SoapFault("Server","Function $name doesn't exist");
H A Dserver017.phpt8 return new SoapFault("MyFault","My fault string");
H A Dserver018.phpt8 throw new SoapFault("MyFault","My fault string");
H A Dserver021.phpt12 return new SoapFault("Server","Function $name doesn't exist");
H A Dserver022.phpt7 class MyFault extends SoapFault {
/PHP-7.3/ext/soap/
H A Dsoap.c229 PHP_METHOD(SoapFault, SoapFault);
230 PHP_METHOD(SoapFault, __toString);
392 SOAP_CTOR(SoapFault, SoapFault, arginfo_soapfault_soapfault, 0)
393 PHP_ME(SoapFault, __toString, arginfo_soap__void, 0)
859 PHP_METHOD(SoapFault, SoapFault) in PHP_METHOD() argument
910 PHP_METHOD(SoapFault, __toString) in PHP_METHOD() argument
/PHP-7.3/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_soapfault_001w.phpt2 SOAP Interop Round4 GroupH SoapFault 001 (php/wsdl): echoVersionMismatchFault(SOAP 1.1)
H A Dr4_groupH_soapfault_002w.phpt2 SOAP Interop Round4 GroupH SoapFault 002 (php/wsdl): echoVersionMismatchFault(SOAP 1.2)
H A Dr4_groupH_soapfault_004w.phpt2 SOAP Interop Round4 GroupH SoapFault 004 (php/wsdl): echoMustUnderstandFault
H A Dr4_groupH_soapfault_003w.phpt2 SOAP Interop Round4 GroupH SoapFault 003 (php/wsdl): echoVersionMismatchFault(unknown version)
/PHP-7.3/ext/soap/tests/bugs/
H A Dbug50698_2.phpt11 …SoapClient(dirname(__FILE__).'/bug50698_2.wsdl');\" should throw an exception of type 'SoapFault'";
12 } catch (SoapFault $e) {
16 …echo "Call: \"new SoapClient(dirname(__FILE__).'/bug50698_2.wsdl');\" threw a SoapFault with an in…
H A Dbug50698_3.phpt11 …SoapClient(dirname(__FILE__).'/bug50698_3.wsdl');\" should throw an exception of type 'SoapFault'";
12 } catch (SoapFault $e) {
16 …echo "Call: \"new SoapClient(dirname(__FILE__).'/bug50698_3.wsdl');\" threw a SoapFault with an in…
H A Dbug66112.phpt14 }catch(SoapFault $x){
H A Dbug29109.phpt2 Bug #29109 (Uncaught SoapFault exception: [WSDL] Out of memory)
H A Dbug30106.phpt2 Bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught SoapFault exception)
H A Dbug36999.phpt42 } catch (SoapFault $ex) {
/PHP-7.3/ext/soap/interop/
H A Dclient_round2_interop.php151 } catch (SoapFault $fault) {
368 } catch (SoapFault $ex) {
385 $fault = new SoapFault('WSDL',"no WSDL defined for $endpoint");
434 } catch (SoapFault $ex) {
487 … $fault = new SoapFault('HEADER','The returned result did not match what we expected to receive');
498 … $fault = new SoapFault('RESULT','The returned result did not match what we expected to receive');
573 $skipfault = new SoapFault('SKIP','endpoint skipped');
/PHP-7.3/ext/soap/tests/soap12/
H A Dsoap12-test.inc117 …return new SoapFault("Client", "Not a valid country code", NULL, NULL, NULL, new SoapHeader("http:…

Completed in 64 milliseconds

12