Annotation of embedaddon/php/ext/soap/tests/interop/Round3/GroupD/round3_groupD_compound1.inc, revision 1.1

1.1     ! misho       1: <?php
        !             2: class SOAP_Interop_GroupD {
        !             3:     function echoPerson($person)
        !             4:     {
        !             5:         return $person;
        !             6:     }
        !             7: 
        !             8:     function echoDocument($doc)
        !             9:     {
        !            10:         return $doc;
        !            11:     }
        !            12: }
        !            13: 
        !            14: $server = new SoapServer(dirname(__FILE__)."/round3_groupD_compound1.wsdl");
        !            15: $server->setClass("SOAP_Interop_GroupD");
        !            16: $server->handle($HTTP_RAW_POST_DATA);
        !            17: ?>

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