summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round3/GroupE/round3_groupE_list.inc
blob: 7b918c0afbb8bcb6e1db32bb56c060bb009f6084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class SOAP_Interop_GroupE {

    function echoLinkedList($inputList)
    {
      global $d;
      $d = $inputList;
      return $inputList;
    }

}

$server = new SoapServer(dirname(__FILE__)."/round3_groupE_list.wsdl");
$server->setClass("SOAP_Interop_GroupE");
$server->handle($HTTP_RAW_POST_DATA);
var_dump($d);
?>