1<?php
2class SOAP_Interop_GroupG {
3
4  function EchoBase64AsAttachment($in) {
5    return $in;
6  }
7
8  function EchoAttachmentAsBase64($in) {
9    return $in;
10  }
11
12  function EchoAttachment($in) {
13    return $in;
14  }
15
16  function EchoAttachments($in) {
17    return $in;
18  }
19
20}
21
22$server = new SoapServer(dirname(__FILE__)."/round4_groupG_dimedoc.wsdl");
23$server->setClass("SOAP_Interop_GroupG");
24$server->handle($HTTP_RAW_POST_DATA);
25?>
26