php-src/ext/soap/tests/interop/Round3/GroupF/round3_groupF_ext.inc
2005-04-03 15:51:22 +00:00

14 lines
250 B
PHP

<?php
class SOAP_Interop_GroupF {
function echoString($inputString)
{
return $inputString;
}
}
$server = new SoapServer(dirname(__FILE__)."/round3_groupF_ext.wsdl");
$server->setClass("SOAP_Interop_GroupF");
$server->handle();
?>