# HG changeset patch # User Oleksandr Gavenko # Date 1357593515 -7200 # Node ID f85370e9a785c5371cfe7c96f30da8ba1754734d # Parent e39ad9b6224a98480f9a3fd74fba76f253417ded XML-RPC implementations. diff -r e39ad9b6224a -r f85370e9a785 xml-rpc.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xml-rpc.rst Mon Jan 07 23:18:35 2013 +0200 @@ -0,0 +1,35 @@ +.. -*- coding: utf-8; -*- +.. include:: HEADER.rst + +========== + XML-RPC. +========== +.. contents:: + +XML-RPC spec. +============= + + http://xmlrpc.scripting.com/spec.html + Official specs for XML-RPC. + http://tldp.org/HOWTO/XML-RPC-HOWTO/ + XML-RPC HOWTO. + +C libraries. +============ + + * http://xmlrpc-c.sourceforge.net/ + +Python libraries. +================= + + http://docs.python.org/2/library/xmlrpclib.html + Standard Python xmlrpclib module. + +Java libraries. +=============== + + http://ws.apache.org/xmlrpc/ + Apache implementation (org.apache.xmlrpc.*). + http://xmlrpc.sourceforge.net/ + redstone.xmlrpc.* implementation. +