1<?php
2class SOAP_Interop_GroupE {
3
4    function echoLinkedList($inputList)
5    {
6      global $d;
7      $d = $inputList;
8      return $inputList;
9    }
10
11}
12
13$server = new SoapServer(dirname(__FILE__)."/round3_groupE_list.wsdl");
14$server->setClass("SOAP_Interop_GroupE");
15$server->handle($HTTP_RAW_POST_DATA);
16var_dump($d);
17?>