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

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

}

$server = new SoapServer(dirname(__FILE__)."/round3_groupF_ext.wsdl");
$server->setClass("SOAP_Interop_GroupF");
$server->handle($HTTP_RAW_POST_DATA);
?>