summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round3/GroupF/round3_groupF_headers.inc
blob: ee65811197feae7849a6bcfc0473f42c102ce844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
class SOAP_Interop_GroupF {

    function Header1($input)
    {
    }

    function Header2($input)
    {
    }

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

}

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