xmlrpc.php

  1. 7.x drupal-7.x/xmlrpc.php
  2. 6.x drupal-6.x/xmlrpc.php

PHP page for handling incoming XML-RPC requests from clients.

File

drupal-6.x/xmlrpc.php
View source
  1. <?php
  2. /**
  3. * @file
  4. * PHP page for handling incoming XML-RPC requests from clients.
  5. */
  6. include_once './includes/bootstrap.inc';
  7. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  8. include_once './includes/xmlrpc.inc';
  9. include_once './includes/xmlrpcs.inc';
  10. xmlrpc_server(module_invoke_all('xmlrpc'));