2001-09-09 16:47:10 +00:00
|
|
|
<?php
|
2001-10-20 20:45:05 +00:00
|
|
|
// $Id$
|
2001-09-09 16:47:10 +00:00
|
|
|
|
2004-08-21 06:42:38 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* PHP page for handling incoming XML-RPC requests from clients.
|
|
|
|
*/
|
|
|
|
|
2004-08-12 18:00:11 +00:00
|
|
|
include_once 'includes/bootstrap.inc';
|
2005-06-22 20:19:58 +00:00
|
|
|
drupal_bootstrap('full');
|
2004-08-12 18:00:11 +00:00
|
|
|
include_once 'includes/xmlrpcs.inc';
|
2001-09-09 16:47:10 +00:00
|
|
|
|
2004-08-12 18:00:11 +00:00
|
|
|
$functions = module_invoke_all('xmlrpc');
|
2001-09-09 16:47:10 +00:00
|
|
|
|
|
|
|
$server = new xmlrpc_server($functions);
|
|
|
|
|
|
|
|
?>
|