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  function EchoAttachmentAsString($in) {
21    return $in;
22  }
23
24  function EchoUnrefAttachments($in) {
25    return $in;
26  }
27
28}
29
30$server = new SoapServer(dirname(__FILE__)."/round4_groupG_dimedoc.wsdl");
31$server->setClass("SOAP_Interop_GroupG");
32$server->handle($HTTP_RAW_POST_DATA);
33?>
34