1--TEST-- 2SOAP Interop Round4 GroupI XSD 020 (php/wsdl): echoComplexTypeAsSimpleTypes(minOccurs=0) 3--SKIPIF-- 4<?php require_once('skipif.inc'); ?> 5--INI-- 6precision=14 7soap.wsdl_cache_enabled=0 8--FILE-- 9<?php 10class SOAPComplexType { 11 function SOAPComplexType($s, $i, $f) { 12 $this->varString = $s; 13 $this->varInt = $i; 14 $this->varFloat = $f; 15 } 16} 17$struct = new SOAPComplexType('arg',34,325.325); 18unset($struct->varString); 19$client = new SoapClient(dirname(__FILE__)."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0)); 20$client->echoComplexTypeAsSimpleTypes(array("inputComplexType"=>$struct)); 21echo $client->__getlastrequest(); 22$HTTP_RAW_POST_DATA = $client->__getlastrequest(); 23include("round4_groupI_xsd.inc"); 24echo "ok\n"; 25?> 26--EXPECT-- 27<?xml version="1.0" encoding="UTF-8"?> 28<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:echoComplexTypeAsSimpleTypes><ns2:inputComplexType><ns1:varInt>34</ns1:varInt><ns1:varFloat>325.325</ns1:varFloat></ns2:inputComplexType></ns2:echoComplexTypeAsSimpleTypes></SOAP-ENV:Body></SOAP-ENV:Envelope> 29<?xml version="1.0" encoding="UTF-8"?> 30<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/"><SOAP-ENV:Body><ns1:echoComplexTypeAsSimpleTypesResponse><ns1:outputInteger>34</ns1:outputInteger><ns1:outputFloat>325.325</ns1:outputFloat></ns1:echoComplexTypeAsSimpleTypesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope> 31ok 32