php-src/ext/soap/tests/interop/Round4/GroupG/round4_groupG_dimerpc.inc
2005-04-03 15:51:22 +00:00

34 lines
532 B
PHP

<?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_dimerpc.wsdl");
$server->setClass("SOAP_Interop_GroupG");
$server->handle();
?>