1--TEST-- 2SOAP Interop Round3 GroupD Compound1 001 (php/wsdl): echoPerson 3--SKIPIF-- 4<?php require_once('skipif.inc'); ?> 5--INI-- 6precision=14 7soap.wsdl_cache_enabled=0 8--FILE-- 9<?php 10class Person { 11 function __construct($a=NULL, $i=NULL, $n=NULL, $m=NULL) { 12 $this->Age = $a; 13 $this->ID = $i; 14 $this->Name = $n; 15 $this->Male = $m; 16 } 17} 18$person = new Person(32,12345,'Shane',TRUE); 19$client = new SoapClient(dirname(__FILE__)."/round3_groupD_compound1.wsdl",array("trace"=>1,"exceptions"=>0)); 20$client->echoPerson($person); 21echo $client->__getlastrequest(); 22$HTTP_RAW_POST_DATA = $client->__getlastrequest(); 23include("round3_groupD_compound1.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"><SOAP-ENV:Body><ns1:x_Person Name="Shane" Male="true"><ns1:Age>32</ns1:Age><ns1:ID>12345</ns1:ID></ns1:x_Person></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/xsd"><SOAP-ENV:Body><ns1:result_Person Name="Shane" Male="true"><ns1:Age>32</ns1:Age><ns1:ID>12345</ns1:ID></ns1:result_Person></SOAP-ENV:Body></SOAP-ENV:Envelope> 31ok 32