XML-RPC afaik is just like web services. basically it's a common "language" if you may so that two systems can talk a common cross-platform protocol. at least in the web services world, a client connects to a server and requests certain methods, which really translate into function calls on the server. the server also "exposes" all it's methods, properties, datatypes, etc, and the client "consumes" the output.
Comment