Annotation of embedaddon/php/ext/soap/tests/interop/Round3/GroupF/round3_groupF_headers.inc, revision 1.1.1.1

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

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