File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / interop / Round3 / GroupF / round3_groupF_headers.inc
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:01 2012 UTC (12 years, 6 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

<?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($HTTP_RAW_POST_DATA);
?>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>