1<?php
2class 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?>
23