--TEST-- SOAP Interop Round4 GroupI XSD 023 (php/wsdl): echoNestedComplexType --SKIPIF-- --INI-- precision=14 soap.wsdl_cache_enabled=0 --FILE-- varString = $s; $this->varInt = $i; $this->varFloat = $f; } } class SOAPComplexTypeComplexType { function SOAPComplexTypeComplexType($s, $i, $f, $c) { $this->varString = $s; $this->varInt = $i; $this->varFloat = $f; $this->varComplexType = $c; } } $struct = new SOAPComplexTypeComplexType("arg",34,12.345,new SOAPComplexType("arg",43,54.321)); $client = new SoapClient(dirname(__FILE__)."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0)); $client->echoNestedComplexType(array("inputComplexType"=>$struct)); echo $client->__getlastrequest(); $HTTP_RAW_POST_DATA = $client->__getlastrequest(); include("round4_groupI_xsd.inc"); echo "ok\n"; ?> --EXPECT-- arg3412.34543arg54.321 arg3412.34543arg54.321 ok