Annotation of embedaddon/php/ext/soap/tests/interop/Round3/GroupD/r3_groupD_compound1_001w.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: SOAP Interop Round3 GroupD Compound1 001 (php/wsdl): echoPerson
                      3: --SKIPIF--
                      4: <?php require_once('skipif.inc'); ?>
                      5: --INI--
                      6: precision=14
                      7: soap.wsdl_cache_enabled=0
                      8: --FILE--
                      9: <?php
                     10: class Person {
                     11:     function Person($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);
                     21: echo $client->__getlastrequest();
                     22: $HTTP_RAW_POST_DATA = $client->__getlastrequest();
                     23: include("round3_groupD_compound1.inc");
                     24: echo "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>
                     31: ok

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