summaryrefslogtreecommitdiff
path: root/ext/soap/tests/interop/Round3/GroupD/round3_groupD_compound1.inc
blob: 8e28669954c6f362a0b9ead955f4936ec612cb1f (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($HTTP_RAW_POST_DATA);
?>