Annotation of embedaddon/php/ext/soap/tests/interop/Round4/GroupH/round4_groupH_soapfault.inc, revision 1.1.1.1

1.1       misho       1: <?php
                      2: class SOAP_Interop_GroupH {
                      3: 
                      4:     function echoVersionMismatchFault()
                      5:     {
                      6:     }
                      7: 
                      8:     function echoMustUnderstandFault()
                      9:     {
                     10:     }
                     11: 
                     12:     function HeaderRequest($string)
                     13:     {
                     14:     }
                     15: 
                     16: 
                     17: }
                     18: 
                     19: $server = new SoapServer(dirname(__FILE__)."/round4_groupH_soapfault.wsdl");
                     20: $server->setClass("SOAP_Interop_GroupH");
                     21: $server->handle($HTTP_RAW_POST_DATA);
                     22: ?>

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