function xmlrpc

7.x common.inc xmlrpc($url, $args, $options = array())
6.x common.inc xmlrpc($url)

Performs one or more XML-RPC request(s).

Usage example:

$result = xmlrpc('http://example.com/xmlrpc.php', array(
  'service.methodName' => array($parameter, $second, $third),
));

Parameters

$url: An absolute URL of the XML-RPC endpoint.

$args: An associative array whose keys are the methods to call and whose values are the arguments to pass to the respective method. If multiple methods are specified, a system.multicall is performed.

$options: (optional) An array of options to pass along to drupal_http_request().

Return value

For one request: Either the return value of the method on success, or FALSE. If FALSE is returned, see xmlrpc_errno() and xmlrpc_error_msg(). For multiple requests: An array of results. Each result will either be the result returned by the method called, or an xmlrpc_error object if the call failed. See xmlrpc_error().

5 calls to xmlrpc()
XMLRPCBasicTestCase::testListMethods in drupal-7.x/modules/simpletest/tests/xmlrpc.test
Ensure that a basic XML-RPC call with no parameters works.
XMLRPCBasicTestCase::testMethodSignature in drupal-7.x/modules/simpletest/tests/xmlrpc.test
Ensure that system.methodSignature returns an array of signatures.
XMLRPCMessagesTestCase::testAlterListMethods in drupal-7.x/modules/simpletest/tests/xmlrpc.test
Ensure that hook_xmlrpc_alter() can hide even builtin methods.
XMLRPCMessagesTestCase::testSizedMessages in drupal-7.x/modules/simpletest/tests/xmlrpc.test
Make sure that XML-RPC can transfer large messages.
XMLRPCValidator1IncTestCase::testValidator1 in drupal-7.x/modules/simpletest/tests/xmlrpc.test
Run validator1 tests.
3 string references to 'xmlrpc'
xmlrpc.php in drupal-7.x/xmlrpc.php
PHP page for handling incoming XML-RPC requests from clients.
xmlrpc_server in drupal-7.x/includes/xmlrpcs.inc
Invokes XML-RPC methods on this server.
xmlrpc_server_get_capabilities in drupal-7.x/includes/xmlrpcs.inc
Returns a list of the capabilities of this server.

File

drupal-7.x/includes/common.inc, line 8083
Common functions that many Drupal modules will need to reference.

Code

function xmlrpc($url, $args, $options = array()) {
  require_once DRUPAL_ROOT . '/includes/xmlrpc.inc';
  return _xmlrpc($url, $args, $options);
}