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

13 lines
253 B
PHP

<?php
class SOAP_Interop_GroupD {
function echoEmployee($employee)
{
return $employee;
}
}
$server = new SoapServer(dirname(__FILE__)."/round3_groupD_compound2.wsdl");
$server->setClass("SOAP_Interop_GroupD");
$server->handle();
?>