
| Path : /usr/src/php/ext/soap/tests/interop/Round3/GroupF/ |
| Current File : //usr/src/php/ext/soap/tests/interop/Round3/GroupF/round3_groupF_ext.inc |
<?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($HTTP_RAW_POST_DATA);
?>