php-src/ext/soap/tests/interop/Round4/GroupH/round4_groupH_soapfault.inc

23 lines
353 B
PHP
Raw Normal View History

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