Lines Matching defs:server
104 ServerProxy Represents a logical connection to an XML-RPC server
114 Transport Handles an HTTP transaction to an XML-RPC server
115 SafeTransport Handles an HTTPS transaction to an XML-RPC server
193 # transport layer, if the server returns an error code other than 200
861 """server -> an object used to boxcar method calls
863 server should be a ServerProxy object.
877 def __init__(self, server):
878 self.__server = server
1114 # some magic to bind an XML-RPC method to an RPC server.
1131 """Handles an HTTP transaction to an XML-RPC server."""
1244 # Connect to server.
1360 """Handles an HTTPS transaction to an XML-RPC server."""
1386 # Standard server proxy. This class establishes a virtual connection
1387 # to an XML-RPC server.
1393 # @param uri The connection point on the server.
1403 """uri [,options] -> a logical connection to an XML-RPC server
1405 uri is the connection point on the server, given as
1420 All 8-bit strings passed to the server proxy are assumed to use
1427 # establish a "logical" server connection
1459 # call a method on the remote server
1487 # result getattr(server, "strange-python-name")(args)
1516 # local server, available from Lib/xmlrpc/server.py
1517 server = ServerProxy("http://localhost:8000")
1520 print(server.currentTime.getCurrentTime())
1524 multi = MultiCall(server)