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

17 lines
305 B
PHP

<?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();
var_dump($d);
?>