module documentation
(source)

A generic resource for publishing objects via XML-RPC.

Maintainer: Itamar Shtull-Trauring

Class ​Handler Handle a XML-RPC request and store the state for a request in progress.
Class ​No​Such​Function There is no function by the given name.
Class ​Proxy A Proxy for making remote XML-RPC calls.
Class ​Query​Factory XML-RPC Client Factory
Class ​Query​Protocol No class docstring; 0/1 instance variable, 2/4 methods documented
Class XMLRPC A resource that implements XML-RPC.
Class ​XMLRPCIntrospection Implement the XML-RPC Introspection API.
Function add​Introspection Add Introspection support to an XMLRPC server.
Function with​Request Decorator to cause the request to be passed as the first argument to the method.
Constant FAILURE Undocumented
Constant NOT​_FOUND Undocumented
Variable ​Fault See xmlrpclib.Fault
Variable payload​Template Undocumented
def addIntrospection(xmlrpc): (source)
Add Introspection support to an XMLRPC server.
Parameters
xmlrpc:XMLRPCthe XMLRPC server to add Introspection support to.
def withRequest(f): (source)

Decorator to cause the request to be passed as the first argument to the method.

If an xmlrpc_ method is wrapped with withRequest, the request object is passed as the first argument to that method. For example:

    @withRequest
    def xmlrpc_echo(self, request, s):
        return s
Present Since
10.2
FAILURE: int = (source)

Undocumented

Value
8002
NOT_FOUND: int = (source)

Undocumented

Value
8001
payloadTemplate: str = (source)

Undocumented