XML-RPC is a simple, portable way to make remote procedure calls over HTTP. It can be used with Perl, Java, Python, C, C++, PHP and many other programming languages. Implementations are available for Unix, Windows and the Macintosh.
Here's a short XML-RPC client written in Perl.
use Frontier::Client; $server = Frontier::Client->new(url => 'http://betty.userland.com/RPC2'); $name = $server->call('examples.getStateName', 41); print "$name\n"; |
Here's the same program in Python. (This time, we use Fredrik Lundh's xmlrpclib.)
python> import xmlrpclib python> server = xmlrpclib.Server("http://betty.userland.com/RPC2") python> server.examples.getStateName(41) 'South Dakota' |
How it Works
XML-RPC is described fully in Dave Winer's official specification. If you're curious, go ahead and take a look—it's a quick and straight-forward read.On the wire, XML-RPC values are encoded as XML:
|
Supported Data Types
XML-RPC supports the following data types:- int
- A signed, 32-bit integer.
- string
- An ASCII string, which may contain NULL bytes. (Actually, several XML-RPC implementations support Unicode, thanks to the underlying features of XML.)
- boolean
- Either true or false.
- double
- A double-precision floating point number. (Accuracy may be limited in some implementations.)
- dateTime.iso8601
- A date and time. Unfortunately, since XML-RPC forbids the use of timezones, this is very nearly useless.
- base64
- Raw binary data of any length; encoded using Base64 on the wire. Very useful. (Some implementations don't like to receive zero bytes of data, though.)
- array
- An one-dimensional array of values. Individual values may be of any type.
- struct
- A collection of key-value pairs. The keys are strings; the values may be of any type.
The History of XML-RPC
XML-RPC was inspired by two earlier protocols. The first is an anonymous RPC protocol designed by Dave Winer and announced in an old DaveNet essay. (This is why XML-RPC servers are often installed under /RPC2.) The other, more important inspiration was an early draft of the SOAP protocol.A longer history of XML-RPC has been generously provided by Dave Winer. This also explains the relationship between XML-RPC and SOAP.
Reference :
http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-intro.html
https://en.wikipedia.org/wiki/XML-RPC