blob: a92484e1deb3c539f27172d1ed31fc4e08fa5309 (
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($HTTP_RAW_POST_DATA);
?>
|