1<?php
2class SOAP_Interop_GroupD {
3    function echoEmployee($employee)
4    {
5        return $employee;
6    }
7}
8
9$server = new SoapServer(dirname(__FILE__)."/round3_groupD_compound2.wsdl");
10$server->setClass("SOAP_Interop_GroupD");
11$server->handle($HTTP_RAW_POST_DATA);
12?>
13