blob: cc5e83a70685e68c79faa36e6ada7c832c80febd [file] [log] [blame]
Georg Brandl38eceaa2008-05-26 11:14:17 +00001:mod:`xmlrpc.client` --- XML-RPC client access
2==============================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
Georg Brandl38eceaa2008-05-26 11:14:17 +00004.. module:: xmlrpc.client
Georg Brandl116aa622007-08-15 14:28:22 +00005 :synopsis: XML-RPC client access.
6.. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>
7.. sectionauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
8
9
Christian Heimes5b5e81c2007-12-31 16:14:33 +000010.. XXX Not everything is documented yet. It might be good to describe
Florent Xicluna61665192011-11-15 20:53:25 +010011 Marshaller, Unmarshaller, getparser and Transport.
Georg Brandl116aa622007-08-15 14:28:22 +000012
Raymond Hettinger3029aff2011-02-10 08:09:36 +000013**Source code:** :source:`Lib/xmlrpc/client.py`
14
15--------------
16
Georg Brandl116aa622007-08-15 14:28:22 +000017XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
18transport. With it, a client can call methods with parameters on a remote
19server (the server is named by a URI) and get back structured data. This module
20supports writing XML-RPC client code; it handles all the details of translating
21between conformable Python objects and XML on the wire.
22
23
Christian Heimes7380a672013-03-26 17:35:55 +010024.. warning::
25
26 The :mod:`xmlrpc.client` module is not secure against maliciously
27 constructed data. If you need to parse untrusted or unauthenticated data see
28 :ref:`xml-vulnerabilities`.
29
Benjamin Peterson4ffb0752014-11-03 14:29:33 -050030.. versionchanged:: 3.4.3
Benjamin Peterson77a75b32014-10-13 11:54:50 -040031
Benjamin Peterson4ffb0752014-11-03 14:29:33 -050032 For https URIs, :mod:`xmlrpc.client` now performs all the necessary
33 certificate and hostname checks by default
Christian Heimes7380a672013-03-26 17:35:55 +010034
Florent Xicluna61665192011-11-15 20:53:25 +010035.. class:: ServerProxy(uri, transport=None, encoding=None, verbose=False, \
36 allow_none=False, use_datetime=False, \
Benjamin Petersonb7138e22014-11-29 23:38:17 -050037 use_builtin_types=False, *, context=None)
Florent Xicluna61665192011-11-15 20:53:25 +010038
39 .. versionchanged:: 3.3
40 The *use_builtin_types* flag was added.
Georg Brandl116aa622007-08-15 14:28:22 +000041
42 A :class:`ServerProxy` instance is an object that manages communication with a
43 remote XML-RPC server. The required first argument is a URI (Uniform Resource
44 Indicator), and will normally be the URL of the server. The optional second
45 argument is a transport factory instance; by default it is an internal
46 :class:`SafeTransport` instance for https: URLs and an internal HTTP
47 :class:`Transport` instance otherwise. The optional third argument is an
48 encoding, by default UTF-8. The optional fourth argument is a debugging flag.
49 If *allow_none* is true, the Python constant ``None`` will be translated into
50 XML; the default behaviour is for ``None`` to raise a :exc:`TypeError`. This is
51 a commonly-used extension to the XML-RPC specification, but isn't supported by
52 all clients and servers; see http://ontosys.com/xml-rpc/extensions.php for a
Florent Xicluna61665192011-11-15 20:53:25 +010053 description. The *use_builtin_types* flag can be used to cause date/time values
54 to be presented as :class:`datetime.datetime` objects and binary data to be
55 presented as :class:`bytes` objects; this flag is false by default.
56 :class:`datetime.datetime` and :class:`bytes` objects may be passed to calls.
57
58 The obsolete *use_datetime* flag is similar to *use_builtin_types* but it
59 applies only to date/time values.
Georg Brandl116aa622007-08-15 14:28:22 +000060
61 Both the HTTP and HTTPS transports support the URL syntax extension for HTTP
62 Basic Authentication: ``http://user:pass@host:port/path``. The ``user:pass``
63 portion will be base64-encoded as an HTTP 'Authorization' header, and sent to
64 the remote server as part of the connection process when invoking an XML-RPC
65 method. You only need to use this if the remote server requires a Basic
Benjamin Petersonc1da3d12014-11-29 23:32:57 -050066 Authentication user and password. If an HTTPS url is provided, *context* may
67 be :class:`ssl.SSLContext` and configures the SSL settings of the underlying
68 HTTPS connection.
Georg Brandl116aa622007-08-15 14:28:22 +000069
70 The returned instance is a proxy object with methods that can be used to invoke
71 corresponding RPC calls on the remote server. If the remote server supports the
72 introspection API, the proxy can also be used to query the remote server for the
73 methods it supports (service discovery) and fetch other server-associated
74 metadata.
75
76 :class:`ServerProxy` instance methods take Python basic types and objects as
77 arguments and return Python basic types and classes. Types that are conformable
78 (e.g. that can be marshalled through XML), include the following (and except
79 where noted, they are unmarshalled as the same Python type):
80
Georg Brandl44ea77b2013-03-28 13:28:44 +010081 .. tabularcolumns:: |l|L|
82
Georg Brandl116aa622007-08-15 14:28:22 +000083 +---------------------------------+---------------------------------------------+
84 | Name | Meaning |
85 +=================================+=============================================+
86 | :const:`boolean` | The :const:`True` and :const:`False` |
87 | | constants |
88 +---------------------------------+---------------------------------------------+
89 | :const:`integers` | Pass in directly |
90 +---------------------------------+---------------------------------------------+
91 | :const:`floating-point numbers` | Pass in directly |
92 +---------------------------------+---------------------------------------------+
93 | :const:`strings` | Pass in directly |
94 +---------------------------------+---------------------------------------------+
95 | :const:`arrays` | Any Python sequence type containing |
96 | | conformable elements. Arrays are returned |
97 | | as lists |
98 +---------------------------------+---------------------------------------------+
99 | :const:`structures` | A Python dictionary. Keys must be strings, |
100 | | values may be any conformable type. Objects |
101 | | of user-defined classes can be passed in; |
102 | | only their *__dict__* attribute is |
103 | | transmitted. |
104 +---------------------------------+---------------------------------------------+
Florent Xicluna61665192011-11-15 20:53:25 +0100105 | :const:`dates` | In seconds since the epoch. Pass in an |
106 | | instance of the :class:`DateTime` class or |
Christian Heimes05e8be12008-02-23 18:30:17 +0000107 | | a :class:`datetime.datetime` instance. |
Georg Brandl116aa622007-08-15 14:28:22 +0000108 +---------------------------------+---------------------------------------------+
Florent Xicluna61665192011-11-15 20:53:25 +0100109 | :const:`binary data` | Pass in an instance of the :class:`Binary` |
110 | | wrapper class or a :class:`bytes` instance. |
Georg Brandl116aa622007-08-15 14:28:22 +0000111 +---------------------------------+---------------------------------------------+
112
113 This is the full set of data types supported by XML-RPC. Method calls may also
114 raise a special :exc:`Fault` instance, used to signal XML-RPC server errors, or
115 :exc:`ProtocolError` used to signal an error in the HTTP/HTTPS transport layer.
116 Both :exc:`Fault` and :exc:`ProtocolError` derive from a base class called
Georg Brandl38eceaa2008-05-26 11:14:17 +0000117 :exc:`Error`. Note that the xmlrpc client module currently does not marshal
Georg Brandl22b34312009-07-26 14:54:51 +0000118 instances of subclasses of built-in types.
Georg Brandl116aa622007-08-15 14:28:22 +0000119
120 When passing strings, characters special to XML such as ``<``, ``>``, and ``&``
121 will be automatically escaped. However, it's the caller's responsibility to
122 ensure that the string is free of characters that aren't allowed in XML, such as
123 the control characters with ASCII values between 0 and 31 (except, of course,
124 tab, newline and carriage return); failing to do this will result in an XML-RPC
Florent Xicluna61665192011-11-15 20:53:25 +0100125 request that isn't well-formed XML. If you have to pass arbitrary bytes
126 via XML-RPC, use the :class:`bytes` class or the class:`Binary` wrapper class
127 described below.
Georg Brandl116aa622007-08-15 14:28:22 +0000128
129 :class:`Server` is retained as an alias for :class:`ServerProxy` for backwards
130 compatibility. New code should use :class:`ServerProxy`.
131
Benjamin Petersonc1da3d12014-11-29 23:32:57 -0500132 .. versionchanged:: 3.4.3
133 Added the *context* argument.
134
Georg Brandl116aa622007-08-15 14:28:22 +0000135
136.. seealso::
137
138 `XML-RPC HOWTO <http://www.tldp.org/HOWTO/XML-RPC-HOWTO/index.html>`_
Christian Heimesa62da1d2008-01-12 19:39:10 +0000139 A good description of XML-RPC operation and client software in several languages.
Georg Brandl116aa622007-08-15 14:28:22 +0000140 Contains pretty much everything an XML-RPC client developer needs to know.
141
Christian Heimesa62da1d2008-01-12 19:39:10 +0000142 `XML-RPC Introspection <http://xmlrpc-c.sourceforge.net/introspection.html>`_
143 Describes the XML-RPC protocol extension for introspection.
Georg Brandl116aa622007-08-15 14:28:22 +0000144
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000145 `XML-RPC Specification <http://www.xmlrpc.com/spec>`_
146 The official specification.
147
148 `Unofficial XML-RPC Errata <http://effbot.org/zone/xmlrpc-errata.htm>`_
149 Fredrik Lundh's "unofficial errata, intended to clarify certain
150 details in the XML-RPC specification, as well as hint at
151 'best practices' to use when designing your own XML-RPC
152 implementations."
Georg Brandl116aa622007-08-15 14:28:22 +0000153
154.. _serverproxy-objects:
155
156ServerProxy Objects
157-------------------
158
159A :class:`ServerProxy` instance has a method corresponding to each remote
160procedure call accepted by the XML-RPC server. Calling the method performs an
161RPC, dispatched by both name and argument signature (e.g. the same method name
162can be overloaded with multiple argument signatures). The RPC finishes by
163returning a value, which may be either returned data in a conformant type or a
164:class:`Fault` or :class:`ProtocolError` object indicating an error.
165
166Servers that support the XML introspection API support some common methods
Senthil Kumarana6bac952011-07-04 11:28:30 -0700167grouped under the reserved :attr:`system` attribute:
Georg Brandl116aa622007-08-15 14:28:22 +0000168
169
170.. method:: ServerProxy.system.listMethods()
171
172 This method returns a list of strings, one for each (non-system) method
173 supported by the XML-RPC server.
174
175
176.. method:: ServerProxy.system.methodSignature(name)
177
178 This method takes one parameter, the name of a method implemented by the XML-RPC
Georg Brandl94606482009-05-04 20:46:44 +0000179 server. It returns an array of possible signatures for this method. A signature
Georg Brandl116aa622007-08-15 14:28:22 +0000180 is an array of types. The first of these types is the return type of the method,
181 the rest are parameters.
182
183 Because multiple signatures (ie. overloading) is permitted, this method returns
184 a list of signatures rather than a singleton.
185
186 Signatures themselves are restricted to the top level parameters expected by a
187 method. For instance if a method expects one array of structs as a parameter,
188 and it returns a string, its signature is simply "string, array". If it expects
189 three integers and returns a string, its signature is "string, int, int, int".
190
191 If no signature is defined for the method, a non-array value is returned. In
192 Python this means that the type of the returned value will be something other
Georg Brandl94606482009-05-04 20:46:44 +0000193 than list.
Georg Brandl116aa622007-08-15 14:28:22 +0000194
195
196.. method:: ServerProxy.system.methodHelp(name)
197
198 This method takes one parameter, the name of a method implemented by the XML-RPC
199 server. It returns a documentation string describing the use of that method. If
200 no such string is available, an empty string is returned. The documentation
201 string may contain HTML markup.
202
Georg Brandl116aa622007-08-15 14:28:22 +0000203
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000204A working example follows. The server code::
205
Georg Brandl38eceaa2008-05-26 11:14:17 +0000206 from xmlrpc.server import SimpleXMLRPCServer
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000207
208 def is_even(n):
209 return n%2 == 0
210
211 server = SimpleXMLRPCServer(("localhost", 8000))
Georg Brandlf6945182008-02-01 11:56:49 +0000212 print("Listening on port 8000...")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000213 server.register_function(is_even, "is_even")
214 server.serve_forever()
215
216The client code for the preceding server::
217
Georg Brandl38eceaa2008-05-26 11:14:17 +0000218 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000219
Georg Brandl38eceaa2008-05-26 11:14:17 +0000220 proxy = xmlrpc.client.ServerProxy("http://localhost:8000/")
Georg Brandlf6945182008-02-01 11:56:49 +0000221 print("3 is even: %s" % str(proxy.is_even(3)))
222 print("100 is even: %s" % str(proxy.is_even(100)))
Georg Brandl116aa622007-08-15 14:28:22 +0000223
224.. _datetime-objects:
225
226DateTime Objects
227----------------
228
Christian Heimes05e8be12008-02-23 18:30:17 +0000229This class may be initialized with seconds since the epoch, a time
230tuple, an ISO 8601 time/date string, or a :class:`datetime.datetime`
231instance. It has the following methods, supported mainly for internal
232use by the marshalling/unmarshalling code:
Georg Brandl116aa622007-08-15 14:28:22 +0000233
234
235.. method:: DateTime.decode(string)
236
237 Accept a string as the instance's new time value.
238
239
240.. method:: DateTime.encode(out)
241
242 Write the XML-RPC encoding of this :class:`DateTime` item to the *out* stream
243 object.
244
Georg Brandl05f5ab72008-09-24 09:11:47 +0000245It also supports certain of Python's built-in operators through rich comparison
Georg Brandl116aa622007-08-15 14:28:22 +0000246and :meth:`__repr__` methods.
247
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000248A working example follows. The server code::
249
250 import datetime
Georg Brandl38eceaa2008-05-26 11:14:17 +0000251 from xmlrpc.server import SimpleXMLRPCServer
252 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000253
254 def today():
255 today = datetime.datetime.today()
Georg Brandl38eceaa2008-05-26 11:14:17 +0000256 return xmlrpc.client.DateTime(today)
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000257
258 server = SimpleXMLRPCServer(("localhost", 8000))
Georg Brandlf6945182008-02-01 11:56:49 +0000259 print("Listening on port 8000...")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000260 server.register_function(today, "today")
261 server.serve_forever()
262
263The client code for the preceding server::
264
Georg Brandl38eceaa2008-05-26 11:14:17 +0000265 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000266 import datetime
267
Georg Brandl38eceaa2008-05-26 11:14:17 +0000268 proxy = xmlrpc.client.ServerProxy("http://localhost:8000/")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000269
270 today = proxy.today()
271 # convert the ISO8601 string to a datetime object
272 converted = datetime.datetime.strptime(today.value, "%Y%m%dT%H:%M:%S")
Georg Brandlf6945182008-02-01 11:56:49 +0000273 print("Today: %s" % converted.strftime("%d.%m.%Y, %H:%M"))
Georg Brandl116aa622007-08-15 14:28:22 +0000274
275.. _binary-objects:
276
277Binary Objects
278--------------
279
Florent Xicluna61665192011-11-15 20:53:25 +0100280This class may be initialized from bytes data (which may include NULs). The
Georg Brandl116aa622007-08-15 14:28:22 +0000281primary access to the content of a :class:`Binary` object is provided by an
282attribute:
283
284
285.. attribute:: Binary.data
286
287 The binary data encapsulated by the :class:`Binary` instance. The data is
Florent Xicluna61665192011-11-15 20:53:25 +0100288 provided as a :class:`bytes` object.
Georg Brandl116aa622007-08-15 14:28:22 +0000289
290:class:`Binary` objects have the following methods, supported mainly for
291internal use by the marshalling/unmarshalling code:
292
293
Florent Xicluna61665192011-11-15 20:53:25 +0100294.. method:: Binary.decode(bytes)
Georg Brandl116aa622007-08-15 14:28:22 +0000295
Florent Xicluna61665192011-11-15 20:53:25 +0100296 Accept a base64 :class:`bytes` object and decode it as the instance's new data.
Georg Brandl116aa622007-08-15 14:28:22 +0000297
298
299.. method:: Binary.encode(out)
300
301 Write the XML-RPC base 64 encoding of this binary item to the out stream object.
302
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000303 The encoded data will have newlines every 76 characters as per
304 `RFC 2045 section 6.8 <http://tools.ietf.org/html/rfc2045#section-6.8>`_,
305 which was the de facto standard base64 specification when the
306 XML-RPC spec was written.
307
Georg Brandl05f5ab72008-09-24 09:11:47 +0000308It also supports certain of Python's built-in operators through :meth:`__eq__`
309and :meth:`__ne__` methods.
Georg Brandl116aa622007-08-15 14:28:22 +0000310
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000311Example usage of the binary objects. We're going to transfer an image over
312XMLRPC::
313
Georg Brandl38eceaa2008-05-26 11:14:17 +0000314 from xmlrpc.server import SimpleXMLRPCServer
315 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000316
317 def python_logo():
Victor Stinner757db832010-01-30 02:16:55 +0000318 with open("python_logo.jpg", "rb") as handle:
319 return xmlrpc.client.Binary(handle.read())
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000320
321 server = SimpleXMLRPCServer(("localhost", 8000))
Georg Brandlf6945182008-02-01 11:56:49 +0000322 print("Listening on port 8000...")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000323 server.register_function(python_logo, 'python_logo')
324
325 server.serve_forever()
326
327The client gets the image and saves it to a file::
328
Georg Brandl38eceaa2008-05-26 11:14:17 +0000329 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000330
Georg Brandl38eceaa2008-05-26 11:14:17 +0000331 proxy = xmlrpc.client.ServerProxy("http://localhost:8000/")
Victor Stinner757db832010-01-30 02:16:55 +0000332 with open("fetched_python_logo.jpg", "wb") as handle:
333 handle.write(proxy.python_logo().data)
Georg Brandl116aa622007-08-15 14:28:22 +0000334
335.. _fault-objects:
336
337Fault Objects
338-------------
339
340A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault
Senthil Kumarana6bac952011-07-04 11:28:30 -0700341objects have the following attributes:
Georg Brandl116aa622007-08-15 14:28:22 +0000342
343
344.. attribute:: Fault.faultCode
345
346 A string indicating the fault type.
347
348
349.. attribute:: Fault.faultString
350
351 A string containing a diagnostic message associated with the fault.
352
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000353In the following example we're going to intentionally cause a :exc:`Fault` by
354returning a complex type object. The server code::
355
Georg Brandl38eceaa2008-05-26 11:14:17 +0000356 from xmlrpc.server import SimpleXMLRPCServer
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000357
358 # A marshalling error is going to occur because we're returning a
359 # complex number
360 def add(x,y):
361 return x+y+0j
362
363 server = SimpleXMLRPCServer(("localhost", 8000))
Georg Brandlf6945182008-02-01 11:56:49 +0000364 print("Listening on port 8000...")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000365 server.register_function(add, 'add')
366
367 server.serve_forever()
368
369The client code for the preceding server::
370
Georg Brandl38eceaa2008-05-26 11:14:17 +0000371 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000372
Georg Brandl38eceaa2008-05-26 11:14:17 +0000373 proxy = xmlrpc.client.ServerProxy("http://localhost:8000/")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000374 try:
375 proxy.add(2, 5)
Georg Brandl0dedf452009-05-22 16:44:06 +0000376 except xmlrpc.client.Fault as err:
Georg Brandl2ee470f2008-07-16 12:55:28 +0000377 print("A fault occurred")
Georg Brandlf6945182008-02-01 11:56:49 +0000378 print("Fault code: %d" % err.faultCode)
379 print("Fault string: %s" % err.faultString)
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000380
381
Georg Brandl116aa622007-08-15 14:28:22 +0000382
383.. _protocol-error-objects:
384
385ProtocolError Objects
386---------------------
387
388A :class:`ProtocolError` object describes a protocol error in the underlying
389transport layer (such as a 404 'not found' error if the server named by the URI
Senthil Kumarana6bac952011-07-04 11:28:30 -0700390does not exist). It has the following attributes:
Georg Brandl116aa622007-08-15 14:28:22 +0000391
392
393.. attribute:: ProtocolError.url
394
395 The URI or URL that triggered the error.
396
397
398.. attribute:: ProtocolError.errcode
399
400 The error code.
401
402
403.. attribute:: ProtocolError.errmsg
404
405 The error message or diagnostic string.
406
407
408.. attribute:: ProtocolError.headers
409
Guido van Rossum460add42007-08-23 02:13:35 +0000410 A dict containing the headers of the HTTP/HTTPS request that triggered the
Georg Brandl116aa622007-08-15 14:28:22 +0000411 error.
412
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000413In the following example we're going to intentionally cause a :exc:`ProtocolError`
414by providing an invalid URI::
415
Georg Brandl38eceaa2008-05-26 11:14:17 +0000416 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000417
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +0000418 # create a ServerProxy with an URI that doesn't respond to XMLRPC requests
419 proxy = xmlrpc.client.ServerProxy("http://google.com/")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000420
421 try:
422 proxy.some_method()
Georg Brandl0dedf452009-05-22 16:44:06 +0000423 except xmlrpc.client.ProtocolError as err:
Georg Brandl2ee470f2008-07-16 12:55:28 +0000424 print("A protocol error occurred")
Georg Brandlf6945182008-02-01 11:56:49 +0000425 print("URL: %s" % err.url)
426 print("HTTP/HTTPS headers: %s" % err.headers)
427 print("Error code: %d" % err.errcode)
428 print("Error message: %s" % err.errmsg)
Georg Brandl116aa622007-08-15 14:28:22 +0000429
430MultiCall Objects
431-----------------
432
Sandro Tosi9daf98d2011-08-20 17:05:56 +0200433The :class:`MultiCall` object provides a way to encapsulate multiple calls to a
434remote server into a single request [#]_.
Georg Brandl116aa622007-08-15 14:28:22 +0000435
436
437.. class:: MultiCall(server)
438
439 Create an object used to boxcar method calls. *server* is the eventual target of
440 the call. Calls can be made to the result object, but they will immediately
441 return ``None``, and only store the call name and parameters in the
442 :class:`MultiCall` object. Calling the object itself causes all stored calls to
443 be transmitted as a single ``system.multicall`` request. The result of this call
Georg Brandl9afde1c2007-11-01 20:32:30 +0000444 is a :term:`generator`; iterating over this generator yields the individual
445 results.
Georg Brandl116aa622007-08-15 14:28:22 +0000446
Andrew Kuchlingc3db3732013-06-20 21:33:05 -0400447A usage example of this class follows. The server code::
Georg Brandl116aa622007-08-15 14:28:22 +0000448
Georg Brandl38eceaa2008-05-26 11:14:17 +0000449 from xmlrpc.server import SimpleXMLRPCServer
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000450
Ezio Melotti79016e12013-08-08 15:45:56 +0300451 def add(x, y):
452 return x + y
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000453
454 def subtract(x, y):
Ezio Melotti79016e12013-08-08 15:45:56 +0300455 return x - y
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000456
457 def multiply(x, y):
Ezio Melotti79016e12013-08-08 15:45:56 +0300458 return x * y
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000459
460 def divide(x, y):
Andrew Kuchlingc3db3732013-06-20 21:33:05 -0400461 return x // y
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000462
463 # A simple server with simple arithmetic functions
464 server = SimpleXMLRPCServer(("localhost", 8000))
Georg Brandlf6945182008-02-01 11:56:49 +0000465 print("Listening on port 8000...")
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000466 server.register_multicall_functions()
467 server.register_function(add, 'add')
468 server.register_function(subtract, 'subtract')
469 server.register_function(multiply, 'multiply')
470 server.register_function(divide, 'divide')
471 server.serve_forever()
472
473The client code for the preceding server::
474
Georg Brandl38eceaa2008-05-26 11:14:17 +0000475 import xmlrpc.client
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000476
Georg Brandl38eceaa2008-05-26 11:14:17 +0000477 proxy = xmlrpc.client.ServerProxy("http://localhost:8000/")
478 multicall = xmlrpc.client.MultiCall(proxy)
Ezio Melotti79016e12013-08-08 15:45:56 +0300479 multicall.add(7, 3)
480 multicall.subtract(7, 3)
481 multicall.multiply(7, 3)
482 multicall.divide(7, 3)
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000483 result = multicall()
484
Ezio Melotti79016e12013-08-08 15:45:56 +0300485 print("7+3=%d, 7-3=%d, 7*3=%d, 7//3=%d" % tuple(result))
Georg Brandl116aa622007-08-15 14:28:22 +0000486
487
488Convenience Functions
489---------------------
490
Georg Brandl7f01a132009-09-16 15:58:14 +0000491.. function:: dumps(params, methodname=None, methodresponse=None, encoding=None, allow_none=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000492
493 Convert *params* into an XML-RPC request. or into a response if *methodresponse*
494 is true. *params* can be either a tuple of arguments or an instance of the
495 :exc:`Fault` exception class. If *methodresponse* is true, only a single value
496 can be returned, meaning that *params* must be of length 1. *encoding*, if
497 supplied, is the encoding to use in the generated XML; the default is UTF-8.
498 Python's :const:`None` value cannot be used in standard XML-RPC; to allow using
499 it via an extension, provide a true value for *allow_none*.
500
501
Florent Xicluna61665192011-11-15 20:53:25 +0100502.. function:: loads(data, use_datetime=False, use_builtin_types=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000503
504 Convert an XML-RPC request or response into Python objects, a ``(params,
505 methodname)``. *params* is a tuple of argument; *methodname* is a string, or
506 ``None`` if no method name is present in the packet. If the XML-RPC packet
507 represents a fault condition, this function will raise a :exc:`Fault` exception.
Florent Xicluna61665192011-11-15 20:53:25 +0100508 The *use_builtin_types* flag can be used to cause date/time values to be
509 presented as :class:`datetime.datetime` objects and binary data to be
510 presented as :class:`bytes` objects; this flag is false by default.
511
512 The obsolete *use_datetime* flag is similar to *use_builtin_types* but it
513 applies only to date/time values.
514
515 .. versionchanged:: 3.3
516 The *use_builtin_types* flag was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000517
Georg Brandl116aa622007-08-15 14:28:22 +0000518
519.. _xmlrpc-client-example:
520
521Example of Client Usage
522-----------------------
523
524::
525
526 # simple test program (from the XML-RPC specification)
Georg Brandl38eceaa2008-05-26 11:14:17 +0000527 from xmlrpc.client import ServerProxy, Error
Georg Brandl116aa622007-08-15 14:28:22 +0000528
529 # server = ServerProxy("http://localhost:8000") # local server
530 server = ServerProxy("http://betty.userland.com")
531
Collin Winterc79461b2007-09-01 23:34:30 +0000532 print(server)
Georg Brandl116aa622007-08-15 14:28:22 +0000533
534 try:
Collin Winterc79461b2007-09-01 23:34:30 +0000535 print(server.examples.getStateName(41))
Georg Brandl116aa622007-08-15 14:28:22 +0000536 except Error as v:
Collin Winterc79461b2007-09-01 23:34:30 +0000537 print("ERROR", v)
Georg Brandl116aa622007-08-15 14:28:22 +0000538
539To access an XML-RPC server through a proxy, you need to define a custom
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000540transport. The following example shows how:
Georg Brandl116aa622007-08-15 14:28:22 +0000541
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000542.. Example taken from http://lowlife.jp/nobonobo/wiki/xmlrpcwithproxy.html
Georg Brandl116aa622007-08-15 14:28:22 +0000543
544::
545
Georg Brandl24420152008-05-26 16:32:26 +0000546 import xmlrpc.client, http.client
Georg Brandl116aa622007-08-15 14:28:22 +0000547
Georg Brandl38eceaa2008-05-26 11:14:17 +0000548 class ProxiedTransport(xmlrpc.client.Transport):
Georg Brandl116aa622007-08-15 14:28:22 +0000549 def set_proxy(self, proxy):
550 self.proxy = proxy
551 def make_connection(self, host):
552 self.realhost = host
Georg Brandl06788c92009-01-03 21:31:47 +0000553 h = http.client.HTTP(self.proxy)
554 return h
Georg Brandl116aa622007-08-15 14:28:22 +0000555 def send_request(self, connection, handler, request_body):
556 connection.putrequest("POST", 'http://%s%s' % (self.realhost, handler))
557 def send_host(self, connection, host):
558 connection.putheader('Host', self.realhost)
559
560 p = ProxiedTransport()
561 p.set_proxy('proxy-server:8080')
Georg Brandl38eceaa2008-05-26 11:14:17 +0000562 server = xmlrpc.client.Server('http://time.xmlrpc.com/RPC2', transport=p)
Collin Winterc79461b2007-09-01 23:34:30 +0000563 print(server.currentTime.getCurrentTime())
Georg Brandl116aa622007-08-15 14:28:22 +0000564
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000565
566Example of Client and Server Usage
567----------------------------------
568
569See :ref:`simplexmlrpcserver-example`.
570
571
Sandro Tosi9daf98d2011-08-20 17:05:56 +0200572.. rubric:: Footnotes
573
574.. [#] This approach has been first presented in `a discussion on xmlrpc.com
575 <http://web.archive.org/web/20060624230303/http://www.xmlrpc.com/discuss/msgReader$1208?mode=topic>`_.
576.. the link now points to webarchive since the one at
577.. http://www.xmlrpc.com/discuss/msgReader%241208 is broken (and webadmin
578.. doesn't reply)