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

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

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