--TEST-- SOAP Interop Round4 GroupH Complex RPC Enc 007 (php/wsdl): echoMultipleFaults2(1) --SKIPIF-- --INI-- precision=14 soap.wsdl_cache_enabled=0 --FILE-- floatMessage = $f; $this->shortMessage = $s; } } class ExtendedStruct extends BaseStruct { function ExtendedStruct($f, $s, $x1, $x2, $x3) { $this->BaseStruct($f,$s); $this->stringMessage = $x1; $this->intMessage = $x2; $this->anotherIntMessage = $x3; } } class MoreExtendedStruct extends ExtendedStruct { function MoreExtendedStruct($f, $s, $x1, $x2, $x3, $b) { $this->ExtendedStruct($f, $s, $x1, $x2, $x3); $this->booleanMessage = $b; } } $s1 = new BaseStruct(12.345,1); $s2 = new ExtendedStruct(12.345,2,"arg",-3,5); $s3 = new MoreExtendedStruct(12.345,3,"arg",-3,5,true); $client = new SoapClient(dirname(__FILE__)."/round4_groupH_complex_rpcenc.wsdl",array("trace"=>1,"exceptions"=>0)); $client->echoMultipleFaults2(1,$s1,$s2,$s3); echo $client->__getlastrequest(); $HTTP_RAW_POST_DATA = $client->__getlastrequest(); include("round4_groupH_complex_rpcenc.inc"); echo "ok\n"; ?> --EXPECT-- 112.345112.3452arg-3512.3453arg-35true SOAP-ENV:ServerFault in response to 'echoMultipleFaults2'.12.3451 ok