1--TEST-- 2SOAP Interop Round4 GroupI XSD 009 (php/wsdl): echoComplexType(minOccur=0) 3--EXTENSIONS-- 4soap 5--INI-- 6precision=14 7soap.wsdl_cache_enabled=0 8--FILE-- 9<?php 10class SOAPComplexType { 11 function __construct(public $varString, public $varInt, public $varFloat) {} 12} 13$struct = new SOAPComplexType('arg',34,325.325); 14unset($struct->varString); 15$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0)); 16$client->echoComplexType(array("inputComplexType"=>$struct)); 17echo $client->__getlastrequest(); 18$HTTP_RAW_POST_DATA = $client->__getlastrequest(); 19include("round4_groupI_xsd.inc"); 20echo "ok\n"; 21?> 22--EXPECT-- 23<?xml version="1.0" encoding="UTF-8"?> 24<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd" xmlns:ns2="http://soapinterop.org/"><SOAP-ENV:Body><ns2:echoComplexType><ns2:inputComplexType><ns1:varInt>34</ns1:varInt><ns1:varFloat>325.325</ns1:varFloat></ns2:inputComplexType></ns2:echoComplexType></SOAP-ENV:Body></SOAP-ENV:Envelope> 25<?xml version="1.0" encoding="UTF-8"?> 26<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd" xmlns:ns2="http://soapinterop.org/"><SOAP-ENV:Body><ns2:echoComplexTypeResponse><ns2:return><ns1:varInt>34</ns1:varInt><ns1:varFloat>325.325</ns1:varFloat></ns2:return></ns2:echoComplexTypeResponse></SOAP-ENV:Body></SOAP-ENV:Envelope> 27ok 28