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

Lines Matching defs:Server

108   ServerProxy    Represents a logical connection to an XML-RPC server
120 Transport Handles an HTTP transaction to an XML-RPC server
121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
964 """server -> a object used to boxcar method calls
966 server should be a ServerProxy object.
980 def __init__(self, server):
981 self.__server = server
1216 # some magic to bind an XML-RPC method to an RPC server.
1233 """Handles an HTTP transaction to an XML-RPC server."""
1242 # note that many server will get confused, so only use it if you know
1356 # Connect to server.
1479 """Handles an HTTPS transaction to an XML-RPC server."""
1500 # Standard server proxy. This class establishes a virtual connection
1501 # to an XML-RPC server.
1503 # This class is available as ServerProxy and Server. New code should
1507 # @param uri The connection point on the server.
1517 """uri [,options] -> a logical connection to an XML-RPC server
1519 uri is the connection point on the server, given as
1534 All 8-bit strings passed to the server proxy are assumed to use
1540 # establish a "logical" server connection
1569 # call a method on the remote server
1599 # result getattr(server, "strange-python-name")(args)
1613 Server = ServerProxy
1622 # server = ServerProxy("http://localhost:8000") # local server
1623 server = ServerProxy("http://time.xmlrpc.com/RPC2")
1625 print server
1628 print server.currentTime.getCurrentTime()
1632 multi = MultiCall(server)