Class t.w.x.XMLRPC(resource.Resource):

Part of twisted.web2.xmlrpc View Source View In Hierarchy

Known subclasses: twisted.web2.xmlrpc.XMLRPCIntrospection

A resource that implements XML-RPC.

You probably want to connect this to '/RPC2'.

Methods published can return XML-RPC serializable results, Faults, Binary, Boolean, DateTime, Deferreds, or Handler instances.

By default methods beginning with 'xmlrpc_' are published.

Sub-handlers for prefixed methods (e.g., system.listMethods) can be added with putSubHandler. By default, prefixes are separated with a '.'. Override self.separator to change this.
Line # Kind Name Docs
58 Method __init__ Undocumented
62 Method putSubHandler Undocumented
65 Method getSubHandler Undocumented
68 Method getSubHandlerPrefixes Undocumented
71 Method render Subclasses should implement this method to do page rendering.
80 Method http_POST Undocumented
89 Method _cbDispatch Undocumented
96 Method _cbRender Undocumented
108 Method _ebRender Undocumented
114 Method getFunction Given a string, return a function, or raise NoSuchFunction.
140 Method _listFunctions Return a list of the names of all xmlrpc methods.

Inherited from Resource:

Line # Kind Name Docs
148 Method locateChild Locates a child resource of this resource.
173 Method child_ This method locates a child with a trailing "/" in the URL.
182 Method putChild Register a static child.
197 Method http_GET Undocumented

Inherited from RenderMixin (via Resource):

Line # Kind Name Docs
19 Method allowedMethods
27 Method checkPreconditions Checks all preconditions imposed by this resource upon a request made
53 Method renderHTTP See iweb.IResource.renderHTTP.
89 Method http_OPTIONS Respond to a OPTIONS request.
99 Method http_TRACE Respond to a TRACE request.
107 Method http_HEAD Respond to a HEAD request.
def __init__(self):
Undocumented
def putSubHandler(self, prefix, handler):
Undocumented
def getSubHandler(self, prefix):
Undocumented
def getSubHandlerPrefixes(self):
Undocumented
def render(self, request):
Subclasses should implement this method to do page rendering. See http_GET.
Parametersrequestthe request to process.
Returnsan object adaptable to iweb.IResponse.
def http_POST(self, request):
Undocumented
def _cbDispatch(self, request, parser, unmarshaller):
Undocumented
def _cbRender(self, result, request):
Undocumented
def _ebRender(self, failure):
Undocumented
def getFunction(self, functionPath):

Given a string, return a function, or raise NoSuchFunction.

This returned function will be called, and should return the result of the call, a Deferred, or a Fault instance.

Override in subclasses if you want your own policy. The default policy is that given functionPath 'foo', return the method at self.xmlrpc_foo, i.e. getattr(self, "xmlrpc_" + functionPath). If functionPath contains self.separator, the sub-handler for the initial prefix is used to search for the remaining path.
def _listFunctions(self):
Return a list of the names of all xmlrpc methods.