Package funkload :: Module XmlRpcBase :: Class MySimpleXMLRPCServer
[show private | hide private]
[frames | no frames]

Class MySimpleXMLRPCServer

SimpleXMLRPCDispatcher --+    
                         |    
        BaseServer --+   |    
                     |   |    
             TCPServer --+    
                         |    
        SimpleXMLRPCServer --+
                             |
                            MySimpleXMLRPCServer


SimpleXMLRPCServer with allow_reuse_address.
Method Summary
    Inherited from SimpleXMLRPCServer
  __init__(self, addr, requestHandler, logRequests)
    Inherited from TCPServer
  close_request(self, request)
Called to clean up an individual request.
  fileno(self)
Return socket file number.
  get_request(self)
Get the request and client address from the socket.
  server_activate(self)
Called by constructor to activate the server.
  server_bind(self)
Called by constructor to bind the socket.
  server_close(self)
Called to clean-up the server.
    Inherited from SimpleXMLRPCDispatcher
  register_function(self, function, name)
Registers a function to respond to XML-RPC requests.
  register_instance(self, instance, allow_dotted_names)
Registers an instance to respond to XML-RPC requests.
  register_introspection_functions(self)
Registers the XML-RPC introspection methods in the system namespace.
  register_multicall_functions(self)
Registers the XML-RPC multicall method in the system namespace.
  system_listMethods(self)
system.listMethods() => ['add', 'subtract', 'multiple']
  system_methodHelp(self, method_name)
system.methodHelp('add') => "Adds two integers together"
  system_methodSignature(self, method_name)
system.methodSignature('add') => [double, int, int]
  system_multicall(self, call_list)
system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

Class Variable Summary
bool allow_reuse_address = True
    Inherited from TCPServer
int address_family = 2                                                                     
int request_queue_size = 5                                                                     
int socket_type = 1                                                                     

Class Variable Details

allow_reuse_address

Type:
bool
Value:
True                                                                   

Generated by Epydoc 2.1 on Tue Feb 27 10:41:43 2007 http://epydoc.sf.net