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