php-src/ext/soap/tests/interop/Round4/GroupH/round4_groupH_soapfault.inc
2005-04-03 15:51:22 +00:00

23 lines
334 B
PHP

<?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();
?>