Annotation of embedaddon/php/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_022w.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: SOAP Interop Round4 GroupI XSD 022 (php/wsdl): echoSimpleTypesAsComplexType(minOccurs=0)
                      3: --SKIPIF--
                      4: <?php require_once('skipif.inc'); ?>
                      5: --INI--
                      6: precision=14
                      7: soap.wsdl_cache_enabled=0
                      8: --FILE--
                      9: <?php
                     10: $client = new SoapClient(dirname(__FILE__)."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
                     11: $client->echoSimpleTypesAsComplexType(array("inputInteger"=>34,
                     12:                                             "inputFloat"=>12.345));
                     13: echo $client->__getlastrequest();
                     14: $HTTP_RAW_POST_DATA = $client->__getlastrequest();
                     15: include("round4_groupI_xsd.inc");
                     16: echo "ok\n";
                     17: ?>
                     18: --EXPECT--
                     19: <?xml version="1.0" encoding="UTF-8"?>
                     20: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/"><SOAP-ENV:Body><ns1:echoSimpleTypesAsComplexType><ns1:inputInteger>34</ns1:inputInteger><ns1:inputFloat>12.345</ns1:inputFloat></ns1:echoSimpleTypesAsComplexType></SOAP-ENV:Body></SOAP-ENV:Envelope>
                     21: <?xml version="1.0" encoding="UTF-8"?>
                     22: <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:echoSimpleTypesAsComplexTypeResponse><ns2:return><ns1:varInt>34</ns1:varInt><ns1:varFloat>12.345</ns1:varFloat></ns2:return></ns2:echoSimpleTypesAsComplexTypeResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
                     23: ok

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>