Home | History | Annotate | Download | only in python2.7

Lines Matching full:rpc

1 r"""Simple XML-RPC Server.
3 This module can be used to create simple XML-RPC servers
8 It can also be used to handle XML-RPC requests in a CGI
78 # callable through XML-RPC to prevent potential security
161 """Mix-in class that dispatches XML-RPC requests.
163 This class is used to register XML-RPC method handlers
176 """Registers an instance to respond to XML-RPC requests.
181 method will be called with the name of the XML-RPC method and
191 If a registered function matches a XML-RPC request, then it
212 """Registers a function to respond to XML-RPC requests.
223 """Registers the XML-RPC introspection methods in the system
234 """Registers the XML-RPC multicall method in the system
242 """Dispatches an XML-RPC method from marshalled (XML) data.
244 XML-RPC methods are dispatched from the marshalled (XML) data
350 Allows the caller to package multiple XML-RPC calls into a single
379 """Dispatches the XML-RPC method.
381 XML-RPC calls are forwarded to a registered function that
382 matches the called XML-RPC method name. If no such function
387 method will be called with the name of the XML-RPC method and
425 """Simple XML-RPC request handler class.
428 XML-RPC requests.
470 Attempts to interpret all HTTP POST requests as XML-RPC calls,
521 # got a valid XML RPC response
571 """Simple XML-RPC server.
573 Simple XML-RPC server that allows functions and a single instance
575 attempts to dispatch XML-RPC calls to the functions or instance
604 """Multipath XML-RPC Server
608 'virtual XML-RPC servers' at the same port.
642 """Simple handler for XML-RPC data passed through CGI."""
648 """Handle a single XML-RPC request"""
661 XML-RPC uses the POST method.
681 """Handle a single XML-RPC request passed through a CGI post method.
684 XML-RPC response is printed to stdout along with the correct HTTP
703 print 'Running XML-RPC server on port 8000'