Annotation of embedaddon/php/ext/soap/tests/interop/Round3/GroupF/round3_groupF_ext.inc, revision 1.1

1.1     ! misho       1: <?php
        !             2: class SOAP_Interop_GroupF {
        !             3: 
        !             4:     function echoString($inputString)
        !             5:     {
        !             6:       return $inputString;
        !             7:     }
        !             8: 
        !             9: }
        !            10: 
        !            11: $server = new SoapServer(dirname(__FILE__)."/round3_groupF_ext.wsdl");
        !            12: $server->setClass("SOAP_Interop_GroupF");
        !            13: $server->handle($HTTP_RAW_POST_DATA);
        !            14: ?>

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