summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round3/GroupD/round3_groupD_import1.inc
blob: 2e56d1897a259b7846e68e40840e3fe7d61eb953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class SOAP_Interop_GroupD {

    function echoString($inputString)
    {
      return $inputString;
    }

}

$server = new SoapServer(dirname(__FILE__)."/round3_groupD_import1.wsdl");
$server->setClass("SOAP_Interop_GroupD");
$server->handle();
?>