blob: 8f470bad70254730f418592e2c73b6a65a3dcf89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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($HTTP_RAW_POST_DATA);
?>
|