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.
|
|
|
|
*/
|
|
|
|
|
2005-08-17 15:01:14 +00:00
|
|
|
include_once './includes/bootstrap.inc';
|
2005-07-23 05:57:27 +00:00
|
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
2005-08-17 15:01:14 +00:00
|
|
|
include_once './includes/xmlrpc.inc';
|
|
|
|
include_once './includes/xmlrpcs.inc';
|
2001-09-09 16:47:10 +00:00
|
|
|
|
2005-07-13 18:46:15 +00:00
|
|
|
xmlrpc_server(module_invoke_all('xmlrpc'));
|