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

Lines Matching refs:SimpleXMLRPCServer

5 class instance, or by extending the SimpleXMLRPCServer
15 server = SimpleXMLRPCServer(("localhost", 8000))
36 server = SimpleXMLRPCServer(("localhost", 8000))
67 server = SimpleXMLRPCServer(("localhost", 8000))
72 4. Subclass SimpleXMLRPCServer:
74 class MathServer(SimpleXMLRPCServer):
165 instanced directly when used by SimpleXMLRPCServer but it
189 SimpleXMLRPCServer.
500 # In previous versions of SimpleXMLRPCServer, _dispatch
569 class SimpleXMLRPCServer(SocketServer.TCPServer,
603 class MultiPathXMLRPCServer(SimpleXMLRPCServer):
605 This specialization of SimpleXMLRPCServer allows the user to create
614 SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests, allow_none,
704 server = SimpleXMLRPCServer(("localhost", 8000))