summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round4/GroupH/round4_groupH_soapfault.inc
blob: cf6c3741c6ce2a0ba27d89735157ae90043ea41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
class SOAP_Interop_GroupH {

    function echoVersionMismatchFault()
    {
    }

    function echoMustUnderstandFault()
    {
    }

    function HeaderRequest($string)
    {
    }


}

$server = new SoapServer(dirname(__FILE__)."/round4_groupH_soapfault.wsdl");
$server->setClass("SOAP_Interop_GroupH");
$server->handle();
?>