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

<?php
class SOAP_Interop_GroupG {

  function EchoBase64AsAttachment($in) {
    return $in;
  }

  function EchoAttachmentAsBase64($in) {
    return $in;
  }

  function EchoAttachment($in) {
    return $in;
  }

  function EchoAttachments($in) {
    return $in;
  }

  function EchoAttachmentAsString($in) {
    return $in;
  }

  function EchoUnrefAttachments($in) {
    return $in;
  }

}

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

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