. /** * XML-RPC web service implementation classes and methods. * * @package webservice * @copyright 2009 Moodle Pty Ltd (http://moodle.com) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once("$CFG->dirroot/webservice/lib.php"); /** * XML-RPC service server implementation. * @author Petr Skoda (skodak) */ class webservice_xmlrpc_server extends webservice_zend_server { /** * Contructor */ public function __construct() { parent::__construct('Zend_XmlRpc_Server'); $this->wsname = 'xmlrpc'; } }