Annotation of embedaddon/php/ext/soap/tests/interop/Round4/GroupG/round4_groupG_mimedoc.inc, revision 1.1.1.1

1.1       misho       1: <?php
                      2: class 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: ?>

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