Annotation of embedaddon/php/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_035w.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SOAP Interop Round4 GroupI XSD 035 (php/wsdl): echoVoidSoapHeader(6)
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --INI--
        !             6: precision=14
        !             7: soap.wsdl_cache_enabled=0
        !             8: --FILE--
        !             9: <?php
        !            10: $hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varString"=>"arg","varFloat"=>12.345), 1, SOAP_ACTOR_NEXT);
        !            11: $client = new SoapClient(dirname(__FILE__)."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
        !            12: $client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
        !            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" xmlns:ns2="http://soapinterop.org/echoheader/" xmlns:ns3="http://soapinterop.org/"><SOAP-ENV:Header><ns3:echoMeComplexTypeRequest SOAP-ENV:mustUnderstand="1" SOAP-ENV:actor="http://schemas.xmlsoap.org/soap/actor/next"><ns2:varString>arg</ns2:varString><ns2:varInt>34</ns2:varInt><ns2:varFloat>12.345</ns2:varFloat></ns3:echoMeComplexTypeRequest></SOAP-ENV:Header><SOAP-ENV:Body><ns1:echoVoidSoapHeader/></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/echoheader/" xmlns:ns2="http://soapinterop.org/"><SOAP-ENV:Header><ns2:echoMeComplexTypeResponse><ns1:varString>arg</ns1:varString><ns1:varInt>34</ns1:varInt><ns1:varFloat>12.345</ns1:varFloat></ns2:echoMeComplexTypeResponse></SOAP-ENV:Header><SOAP-ENV:Body><ns2:echoVoidSoapHeaderResponse/></SOAP-ENV:Body></SOAP-ENV:Envelope>
        !            23: ok

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