/PHP-7.2/ext/soap/tests/ |
H A D | fault_warning.phpt | 7 $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 D | typemap012.phpt | 2 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 D | bug73452.phpt | 8 $data = 'O:9:"SoapFault":4:{s:9:"faultcode";i:4298448493;s:11:"faultstring";i:4298448543;s:7:"'."\0… 14 SoapFault exception: [4298448493] 4298448543 in :0 16 #0 %sbug73452.php(4): unserialize('O:9:"SoapFault"...')
|
H A D | typemap011.phpt | 2 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 D | typemap010.phpt | 2 SOAP typemap 10: SoapServer support for typemap's to_xml() (SoapFault) 25 throw new SoapFault("Server", "Conversion Fault");
|
H A D | typemap009.phpt | 2 SOAP typemap 9: SoapServer support for typemap's from_xml() (SoapFault) 28 throw new SoapFault("Server", "Conversion Failed");
|
H A D | bug70211.phpt | 18 $sf = new SoapFault('1', 'string', 'detail', 'header','line', str_repeat("A",232).ptr2str($addr));
|
H A D | bug70388.phpt | 17 string(9) "SoapFault"
|
H A D | bug71610.phpt | 13 } catch(SoapFault $e) {
|
/PHP-7.2/ext/soap/tests/interop/Round4/GroupH/ |
H A D | round4_groupH_simple_doclit.inc | 5 …return new SoapFault("Server", "Fault in response to 'echoEmptyFault'.", null, null, "SimpleFault"… 9 …return new SoapFault("Server", "Fault in response to 'echoStringFault'.", null, $input, "SimpleFau… 13 …return new SoapFault("Server", "Fault in response to 'echoIntArrayFault'.", null, $input, "SimpleF… 18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $input->param1… 20 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $input->param2… 22 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, null, "SimpleF… 28 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $input->param1… 30 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $input->param3… 32 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $input->param2… 38 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults3'.", null, $input->param2… [all …]
|
H A D | round4_groupH_simple_rpcenc.inc | 5 …return new SoapFault("Server", "Fault in response to 'echoEmptyFault'.", null, null, "SimpleFault"… 9 …return new SoapFault("Server", "Fault in response to 'echoStringFault'.", null, $input, "SimpleFau… 13 …return new SoapFault("Server", "Fault in response to 'echoIntArrayFault'.", null, $input, "SimpleF… 18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $string, "Simp… 20 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $floats, "Simp… 22 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, null, "SimpleF… 28 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $string, "Simp… 32 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $float, "Simpl… 38 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults3'.", null, $param2, "Simp… 46 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults4'.", null, $enum, "Simple… [all …]
|
H A D | round4_groupH_complex_rpcenc.inc | 5 …return new SoapFault("Server", "Fault in response to 'echoSOAPStructFault'.", null, $input, "Compl… 9 …return new SoapFault("Server", "Fault in response to 'echoBaseStructFault'.", null, $input, "Compl… 13 …return new SoapFault("Server", "Fault in response to 'echoExtendedStructFault'.", null, $input, "C… 18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $s2, "ComplexF… 20 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, array("soapStr… 26 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s2, "ComplexF… 28 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s3, "ComplexF… 30 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s1, "ComplexF…
|
H A D | round4_groupH_complex_doclit.inc | 5 …return new SoapFault("Server", "Fault in response to 'echoSOAPStructFault'.", null, array("soapStr… 9 …return new SoapFault("Server", "Fault in response to 'echoBaseStructFault'.", null, $input, "Compl… 13 …return new SoapFault("Server", "Fault in response to 'echoExtendedStructFault'.", null, $input, "C… 18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $input->param2… 20 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, array("soapStr… 26 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $input->param2… 28 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $input->param3… 30 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $input->param1…
|
/PHP-7.2/ext/soap/tests/bugs/ |
H A D | bug50698_2.phpt | 11 …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 D | bug50698_3.phpt | 11 …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 D | bug34657.phpt | 19 } catch (SoapFault $e) { 28 SoapFault
|
H A D | bug38005.phpt | 2 Bug #38005 (SoapFault faultstring doesn't follow encoding rules) 10 return new SoapFault('Test', 'This is our fault: �');
|
H A D | bug29109.phpt | 2 Bug #29109 (Uncaught SoapFault exception: [WSDL] Out of memory)
|
H A D | bug70469.phpt | 9 } catch (SoapFault $e) {
|
H A D | bug44811.phpt | 12 } catch (SoapFault $e) {
|
H A D | bug36629.phpt | 8 throw new SoapFault("Server", "test1"); 11 return new SoapFault("Server", "test2");
|
H A D | bug54911.phpt | 16 Fatal error: Uncaught SoapFault exception: [Client] Access to undeclared static property: XSoapClie…
|
H A D | bug42151.phpt | 2 Bug #42151 (__destruct functions not called after catching a SoapFault exception)
|
H A D | bug36999.phpt | 42 } catch (SoapFault $ex) {
|
/PHP-7.2/ext/soap/interop/ |
H A D | client_round2_interop.php | 153 } catch (SoapFault $fault) { 370 } catch (SoapFault $ex) { 387 $fault = new SoapFault('WSDL',"no WSDL defined for $endpoint"); 436 } catch (SoapFault $ex) { 489 … $fault = new SoapFault('HEADER','The returned result did not match what we expected to receive'); 500 … $fault = new SoapFault('RESULT','The returned result did not match what we expected to receive'); 575 $skipfault = new SoapFault('SKIP','endpoint skipped');
|