summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round3/GroupD/round3_groupD_compound1.inc
blob: 0525b0b51a4e666723583b00eb895f83906ae2f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class SOAP_Interop_GroupD {
    function echoPerson($person)
    {
        return $person;
    }

    function echoDocument($doc)
    {
        return $doc;
    }
}

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