mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
22 lines
353 B
PHP
22 lines
353 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($HTTP_RAW_POST_DATA);
|
|
?>
|