Annotation of embedaddon/php/ext/soap/tests/interop/Round3/GroupD/round3_groupD_doclit.inc, revision 1.1.1.1

1.1       misho       1: <?php
                      2: class SOAP_Interop_GroupD {
                      3: 
                      4:     function echoString($inputString)
                      5:     {
                      6:       return $inputString;
                      7:     }
                      8: 
                      9:     function echoStringArray($inputStringArray)
                     10:     {
                     11:       return $inputStringArray;
                     12:     }
                     13: 
                     14:     function echoStruct($inputStruct)
                     15:     {
                     16:       return $inputStruct;
                     17:     }
                     18: 
                     19:     function echoVoid()
                     20:     {
                     21:       return NULL;
                     22:     }
                     23: }
                     24: 
                     25: $server = new SoapServer(dirname(__FILE__)."/round3_groupD_doclit.wsdl");
                     26: $server->setClass("SOAP_Interop_GroupD");
                     27: $server->handle($HTTP_RAW_POST_DATA);
                     28: ?>

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