Annotation of embedaddon/php/ext/soap/tests/interop/Round3/GroupE/round3_groupE_list.inc, revision 1.1.1.1

1.1       misho       1: <?php
                      2: class SOAP_Interop_GroupE {
                      3: 
                      4:     function echoLinkedList($inputList)
                      5:     {
                      6:       global $d;
                      7:       $d = $inputList;
                      8:       return $inputList;
                      9:     }
                     10: 
                     11: }
                     12: 
                     13: $server = new SoapServer(dirname(__FILE__)."/round3_groupE_list.wsdl");
                     14: $server->setClass("SOAP_Interop_GroupE");
                     15: $server->handle($HTTP_RAW_POST_DATA);
                     16: var_dump($d);
                     17: ?>

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