Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 1 | :mod:`xmlrpc.client` --- XML-RPC client access |
| 2 | ============================================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 4 | .. module:: xmlrpc.client |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 5 | :synopsis: XML-RPC client access. |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 6 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | .. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com> |
| 8 | .. sectionauthor:: Eric S. Raymond <esr@snark.thyrsus.com> |
| 9 | |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 10 | **Source code:** :source:`Lib/xmlrpc/client.py` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 11 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 12 | .. XXX Not everything is documented yet. It might be good to describe |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 13 | Marshaller, Unmarshaller, getparser and Transport. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 14 | |
Raymond Hettinger | 3029aff | 2011-02-10 08:09:36 +0000 | [diff] [blame] | 15 | -------------- |
| 16 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 17 | XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP(S) as a |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | transport. With it, a client can call methods with parameters on a remote |
| 19 | server (the server is named by a URI) and get back structured data. This module |
| 20 | supports writing XML-RPC client code; it handles all the details of translating |
| 21 | between conformable Python objects and XML on the wire. |
| 22 | |
| 23 | |
Christian Heimes | 7380a67 | 2013-03-26 17:35:55 +0100 | [diff] [blame] | 24 | .. 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 Peterson | e39bba2 | 2014-11-29 23:34:30 -0500 | [diff] [blame] | 30 | .. versionchanged:: 3.5 |
Benjamin Peterson | 77a75b3 | 2014-10-13 11:54:50 -0400 | [diff] [blame] | 31 | |
Martin Panter | fe289c0 | 2016-05-28 02:20:39 +0000 | [diff] [blame] | 32 | For HTTPS URIs, :mod:`xmlrpc.client` now performs all the necessary |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 33 | certificate and hostname checks by default. |
Christian Heimes | 7380a67 | 2013-03-26 17:35:55 +0100 | [diff] [blame] | 34 | |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 35 | .. class:: ServerProxy(uri, transport=None, encoding=None, verbose=False, \ |
| 36 | allow_none=False, use_datetime=False, \ |
Cédric Krier | beda52e | 2019-02-19 17:18:50 +0100 | [diff] [blame] | 37 | use_builtin_types=False, *, headers=(), context=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 38 | |
| 39 | A :class:`ServerProxy` instance is an object that manages communication with a |
| 40 | remote XML-RPC server. The required first argument is a URI (Uniform Resource |
| 41 | Indicator), and will normally be the URL of the server. The optional second |
| 42 | argument is a transport factory instance; by default it is an internal |
| 43 | :class:`SafeTransport` instance for https: URLs and an internal HTTP |
| 44 | :class:`Transport` instance otherwise. The optional third argument is an |
| 45 | encoding, by default UTF-8. The optional fourth argument is a debugging flag. |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 46 | |
| 47 | The following parameters govern the use of the returned proxy instance. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | If *allow_none* is true, the Python constant ``None`` will be translated into |
| 49 | XML; the default behaviour is for ``None`` to raise a :exc:`TypeError`. This is |
| 50 | a commonly-used extension to the XML-RPC specification, but isn't supported by |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 51 | all clients and servers; see `http://ontosys.com/xml-rpc/extensions.php |
Serhiy Storchaka | 64099ea | 2016-05-07 10:05:02 +0300 | [diff] [blame] | 52 | <https://web.archive.org/web/20130120074804/http://ontosys.com/xml-rpc/extensions.php>`_ |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 53 | for a description. |
| 54 | The *use_builtin_types* flag can be used to cause date/time values |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 55 | to be presented as :class:`datetime.datetime` objects and binary data to be |
| 56 | presented as :class:`bytes` objects; this flag is false by default. |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 57 | :class:`datetime.datetime`, :class:`bytes` and :class:`bytearray` objects |
| 58 | may be passed to calls. |
Cédric Krier | beda52e | 2019-02-19 17:18:50 +0100 | [diff] [blame] | 59 | The *headers* parameter is an optional sequence of HTTP headers to send with |
| 60 | each request, expressed as a sequence of 2-tuples representing the header |
| 61 | name and value. (e.g. `[('Header-Name', 'value')]`). |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 62 | The obsolete *use_datetime* flag is similar to *use_builtin_types* but it |
| 63 | applies only to date/time values. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 64 | |
Cédric Krier | beda52e | 2019-02-19 17:18:50 +0100 | [diff] [blame] | 65 | .. versionchanged:: 3.3 |
| 66 | The *use_builtin_types* flag was added. |
| 67 | |
| 68 | .. versionchanged:: 3.8 |
| 69 | The *headers* parameter was added. |
| 70 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 71 | Both the HTTP and HTTPS transports support the URL syntax extension for HTTP |
| 72 | Basic Authentication: ``http://user:pass@host:port/path``. The ``user:pass`` |
| 73 | portion will be base64-encoded as an HTTP 'Authorization' header, and sent to |
| 74 | the remote server as part of the connection process when invoking an XML-RPC |
| 75 | method. You only need to use this if the remote server requires a Basic |
Martin Panter | fe289c0 | 2016-05-28 02:20:39 +0000 | [diff] [blame] | 76 | Authentication user and password. If an HTTPS URL is provided, *context* may |
Benjamin Peterson | c1da3d1 | 2014-11-29 23:32:57 -0500 | [diff] [blame] | 77 | be :class:`ssl.SSLContext` and configures the SSL settings of the underlying |
| 78 | HTTPS connection. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 79 | |
| 80 | The returned instance is a proxy object with methods that can be used to invoke |
| 81 | corresponding RPC calls on the remote server. If the remote server supports the |
| 82 | introspection API, the proxy can also be used to query the remote server for the |
| 83 | methods it supports (service discovery) and fetch other server-associated |
| 84 | metadata. |
| 85 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 86 | Types that are conformable (e.g. that can be marshalled through XML), |
| 87 | include the following (and except where noted, they are unmarshalled |
| 88 | as the same Python type): |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 89 | |
Georg Brandl | 44ea77b | 2013-03-28 13:28:44 +0100 | [diff] [blame] | 90 | .. tabularcolumns:: |l|L| |
| 91 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 92 | +----------------------+-------------------------------------------------------+ |
| 93 | | XML-RPC type | Python type | |
| 94 | +======================+=======================================================+ |
| 95 | | ``boolean`` | :class:`bool` | |
| 96 | +----------------------+-------------------------------------------------------+ |
Serhiy Storchaka | 352601c | 2016-09-11 11:23:38 +0300 | [diff] [blame] | 97 | | ``int``, ``i1``, | :class:`int` in range from -2147483648 to 2147483647. | |
| 98 | | ``i2``, ``i4``, | Values get the ``<int>`` tag. | |
| 99 | | ``i8`` or | | |
| 100 | | ``biginteger`` | | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 101 | +----------------------+-------------------------------------------------------+ |
Serhiy Storchaka | 352601c | 2016-09-11 11:23:38 +0300 | [diff] [blame] | 102 | | ``double`` or | :class:`float`. Values get the ``<double>`` tag. | |
| 103 | | ``float`` | | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 104 | +----------------------+-------------------------------------------------------+ |
| 105 | | ``string`` | :class:`str` | |
| 106 | +----------------------+-------------------------------------------------------+ |
| 107 | | ``array`` | :class:`list` or :class:`tuple` containing | |
| 108 | | | conformable elements. Arrays are returned as | |
Serhiy Storchaka | 64099ea | 2016-05-07 10:05:02 +0300 | [diff] [blame] | 109 | | | :class:`lists <list>`. | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 110 | +----------------------+-------------------------------------------------------+ |
| 111 | | ``struct`` | :class:`dict`. Keys must be strings, values may be | |
| 112 | | | any conformable type. Objects of user-defined | |
Serhiy Storchaka | 64099ea | 2016-05-07 10:05:02 +0300 | [diff] [blame] | 113 | | | classes can be passed in; only their | |
| 114 | | | :attr:`~object.__dict__` attribute is transmitted. | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 115 | +----------------------+-------------------------------------------------------+ |
| 116 | | ``dateTime.iso8601`` | :class:`DateTime` or :class:`datetime.datetime`. | |
| 117 | | | Returned type depends on values of | |
| 118 | | | *use_builtin_types* and *use_datetime* flags. | |
| 119 | +----------------------+-------------------------------------------------------+ |
| 120 | | ``base64`` | :class:`Binary`, :class:`bytes` or | |
| 121 | | | :class:`bytearray`. Returned type depends on the | |
| 122 | | | value of the *use_builtin_types* flag. | |
| 123 | +----------------------+-------------------------------------------------------+ |
| 124 | | ``nil`` | The ``None`` constant. Passing is allowed only if | |
| 125 | | | *allow_none* is true. | |
| 126 | +----------------------+-------------------------------------------------------+ |
Serhiy Storchaka | 352601c | 2016-09-11 11:23:38 +0300 | [diff] [blame] | 127 | | ``bigdecimal`` | :class:`decimal.Decimal`. Returned type only. | |
| 128 | +----------------------+-------------------------------------------------------+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 129 | |
| 130 | This is the full set of data types supported by XML-RPC. Method calls may also |
| 131 | raise a special :exc:`Fault` instance, used to signal XML-RPC server errors, or |
| 132 | :exc:`ProtocolError` used to signal an error in the HTTP/HTTPS transport layer. |
| 133 | Both :exc:`Fault` and :exc:`ProtocolError` derive from a base class called |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 134 | :exc:`Error`. Note that the xmlrpc client module currently does not marshal |
Georg Brandl | 22b3431 | 2009-07-26 14:54:51 +0000 | [diff] [blame] | 135 | instances of subclasses of built-in types. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 136 | |
| 137 | When passing strings, characters special to XML such as ``<``, ``>``, and ``&`` |
| 138 | will be automatically escaped. However, it's the caller's responsibility to |
| 139 | ensure that the string is free of characters that aren't allowed in XML, such as |
| 140 | the control characters with ASCII values between 0 and 31 (except, of course, |
| 141 | tab, newline and carriage return); failing to do this will result in an XML-RPC |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 142 | request that isn't well-formed XML. If you have to pass arbitrary bytes |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 143 | via XML-RPC, use :class:`bytes` or :class:`bytearray` classes or the |
| 144 | :class:`Binary` wrapper class described below. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 145 | |
| 146 | :class:`Server` is retained as an alias for :class:`ServerProxy` for backwards |
| 147 | compatibility. New code should use :class:`ServerProxy`. |
| 148 | |
Benjamin Peterson | e39bba2 | 2014-11-29 23:34:30 -0500 | [diff] [blame] | 149 | .. versionchanged:: 3.5 |
Benjamin Peterson | c1da3d1 | 2014-11-29 23:32:57 -0500 | [diff] [blame] | 150 | Added the *context* argument. |
| 151 | |
Serhiy Storchaka | 352601c | 2016-09-11 11:23:38 +0300 | [diff] [blame] | 152 | .. versionchanged:: 3.6 |
Serhiy Storchaka | b7e3535 | 2016-09-11 16:47:59 +0300 | [diff] [blame] | 153 | Added support of type tags with prefixes (e.g. ``ex:nil``). |
Xtreak | c151f78 | 2018-06-16 10:38:31 +0530 | [diff] [blame] | 154 | Added support of unmarshalling additional types used by Apache XML-RPC |
Serhiy Storchaka | 352601c | 2016-09-11 11:23:38 +0300 | [diff] [blame] | 155 | implementation for numerics: ``i1``, ``i2``, ``i8``, ``biginteger``, |
| 156 | ``float`` and ``bigdecimal``. |
| 157 | See http://ws.apache.org/xmlrpc/types.html for a description. |
| 158 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 159 | |
| 160 | .. seealso:: |
| 161 | |
| 162 | `XML-RPC HOWTO <http://www.tldp.org/HOWTO/XML-RPC-HOWTO/index.html>`_ |
Christian Heimes | a62da1d | 2008-01-12 19:39:10 +0000 | [diff] [blame] | 163 | A good description of XML-RPC operation and client software in several languages. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | Contains pretty much everything an XML-RPC client developer needs to know. |
| 165 | |
Christian Heimes | a62da1d | 2008-01-12 19:39:10 +0000 | [diff] [blame] | 166 | `XML-RPC Introspection <http://xmlrpc-c.sourceforge.net/introspection.html>`_ |
| 167 | Describes the XML-RPC protocol extension for introspection. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 168 | |
Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 169 | `XML-RPC Specification <http://xmlrpc.scripting.com/spec.html>`_ |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 170 | The official specification. |
| 171 | |
| 172 | `Unofficial XML-RPC Errata <http://effbot.org/zone/xmlrpc-errata.htm>`_ |
| 173 | Fredrik Lundh's "unofficial errata, intended to clarify certain |
| 174 | details in the XML-RPC specification, as well as hint at |
| 175 | 'best practices' to use when designing your own XML-RPC |
| 176 | implementations." |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 177 | |
| 178 | .. _serverproxy-objects: |
| 179 | |
| 180 | ServerProxy Objects |
| 181 | ------------------- |
| 182 | |
| 183 | A :class:`ServerProxy` instance has a method corresponding to each remote |
| 184 | procedure call accepted by the XML-RPC server. Calling the method performs an |
| 185 | RPC, dispatched by both name and argument signature (e.g. the same method name |
| 186 | can be overloaded with multiple argument signatures). The RPC finishes by |
| 187 | returning a value, which may be either returned data in a conformant type or a |
| 188 | :class:`Fault` or :class:`ProtocolError` object indicating an error. |
| 189 | |
| 190 | Servers that support the XML introspection API support some common methods |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 191 | grouped under the reserved :attr:`~ServerProxy.system` attribute: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 192 | |
| 193 | |
| 194 | .. method:: ServerProxy.system.listMethods() |
| 195 | |
| 196 | This method returns a list of strings, one for each (non-system) method |
| 197 | supported by the XML-RPC server. |
| 198 | |
| 199 | |
| 200 | .. method:: ServerProxy.system.methodSignature(name) |
| 201 | |
| 202 | This method takes one parameter, the name of a method implemented by the XML-RPC |
Georg Brandl | 9460648 | 2009-05-04 20:46:44 +0000 | [diff] [blame] | 203 | server. It returns an array of possible signatures for this method. A signature |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 204 | is an array of types. The first of these types is the return type of the method, |
| 205 | the rest are parameters. |
| 206 | |
| 207 | Because multiple signatures (ie. overloading) is permitted, this method returns |
| 208 | a list of signatures rather than a singleton. |
| 209 | |
| 210 | Signatures themselves are restricted to the top level parameters expected by a |
| 211 | method. For instance if a method expects one array of structs as a parameter, |
| 212 | and it returns a string, its signature is simply "string, array". If it expects |
| 213 | three integers and returns a string, its signature is "string, int, int, int". |
| 214 | |
| 215 | If no signature is defined for the method, a non-array value is returned. In |
| 216 | Python this means that the type of the returned value will be something other |
Georg Brandl | 9460648 | 2009-05-04 20:46:44 +0000 | [diff] [blame] | 217 | than list. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 218 | |
| 219 | |
| 220 | .. method:: ServerProxy.system.methodHelp(name) |
| 221 | |
| 222 | This method takes one parameter, the name of a method implemented by the XML-RPC |
| 223 | server. It returns a documentation string describing the use of that method. If |
| 224 | no such string is available, an empty string is returned. The documentation |
| 225 | string may contain HTML markup. |
| 226 | |
Brett Cannon | 33a4000 | 2014-03-21 11:24:40 -0400 | [diff] [blame] | 227 | .. versionchanged:: 3.5 |
| 228 | |
| 229 | Instances of :class:`ServerProxy` support the :term:`context manager` protocol |
| 230 | for closing the underlying transport. |
| 231 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 232 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 233 | A working example follows. The server code:: |
| 234 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 235 | from xmlrpc.server import SimpleXMLRPCServer |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 236 | |
| 237 | def is_even(n): |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 238 | return n % 2 == 0 |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 239 | |
| 240 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 241 | print("Listening on port 8000...") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 242 | server.register_function(is_even, "is_even") |
| 243 | server.serve_forever() |
| 244 | |
| 245 | The client code for the preceding server:: |
| 246 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 247 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 248 | |
Brett Cannon | 33a4000 | 2014-03-21 11:24:40 -0400 | [diff] [blame] | 249 | with xmlrpc.client.ServerProxy("http://localhost:8000/") as proxy: |
| 250 | print("3 is even: %s" % str(proxy.is_even(3))) |
| 251 | print("100 is even: %s" % str(proxy.is_even(100))) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 252 | |
| 253 | .. _datetime-objects: |
| 254 | |
| 255 | DateTime Objects |
| 256 | ---------------- |
| 257 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 258 | .. class:: DateTime |
| 259 | |
| 260 | This class may be initialized with seconds since the epoch, a time |
| 261 | tuple, an ISO 8601 time/date string, or a :class:`datetime.datetime` |
| 262 | instance. It has the following methods, supported mainly for internal |
| 263 | use by the marshalling/unmarshalling code: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 264 | |
| 265 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 266 | .. method:: decode(string) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 267 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 268 | Accept a string as the instance's new time value. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 269 | |
| 270 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 271 | .. method:: encode(out) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 272 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 273 | Write the XML-RPC encoding of this :class:`DateTime` item to the *out* stream |
| 274 | object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 275 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 276 | It also supports certain of Python's built-in operators through rich comparison |
| 277 | and :meth:`__repr__` methods. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 278 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 279 | A working example follows. The server code:: |
| 280 | |
| 281 | import datetime |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 282 | from xmlrpc.server import SimpleXMLRPCServer |
| 283 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 284 | |
| 285 | def today(): |
| 286 | today = datetime.datetime.today() |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 287 | return xmlrpc.client.DateTime(today) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 288 | |
| 289 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 290 | print("Listening on port 8000...") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 291 | server.register_function(today, "today") |
| 292 | server.serve_forever() |
| 293 | |
| 294 | The client code for the preceding server:: |
| 295 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 296 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 297 | import datetime |
| 298 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 299 | proxy = xmlrpc.client.ServerProxy("http://localhost:8000/") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 300 | |
| 301 | today = proxy.today() |
| 302 | # convert the ISO8601 string to a datetime object |
| 303 | converted = datetime.datetime.strptime(today.value, "%Y%m%dT%H:%M:%S") |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 304 | print("Today: %s" % converted.strftime("%d.%m.%Y, %H:%M")) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 305 | |
| 306 | .. _binary-objects: |
| 307 | |
| 308 | Binary Objects |
| 309 | -------------- |
| 310 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 311 | .. class:: Binary |
| 312 | |
| 313 | This class may be initialized from bytes data (which may include NULs). The |
| 314 | primary access to the content of a :class:`Binary` object is provided by an |
| 315 | attribute: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 316 | |
| 317 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 318 | .. attribute:: data |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 319 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 320 | The binary data encapsulated by the :class:`Binary` instance. The data is |
| 321 | provided as a :class:`bytes` object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 322 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 323 | :class:`Binary` objects have the following methods, supported mainly for |
| 324 | internal use by the marshalling/unmarshalling code: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 325 | |
| 326 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 327 | .. method:: decode(bytes) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 328 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 329 | Accept a base64 :class:`bytes` object and decode it as the instance's new data. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 330 | |
| 331 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 332 | .. method:: encode(out) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 333 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 334 | Write the XML-RPC base 64 encoding of this binary item to the *out* stream object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 335 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 336 | The encoded data will have newlines every 76 characters as per |
Serhiy Storchaka | 0a36ac1 | 2018-05-31 07:39:00 +0300 | [diff] [blame] | 337 | :rfc:`RFC 2045 section 6.8 <2045#section-6.8>`, |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 338 | which was the de facto standard base64 specification when the |
| 339 | XML-RPC spec was written. |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 340 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 341 | It also supports certain of Python's built-in operators through :meth:`__eq__` |
| 342 | and :meth:`__ne__` methods. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 343 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 344 | Example usage of the binary objects. We're going to transfer an image over |
| 345 | XMLRPC:: |
| 346 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 347 | from xmlrpc.server import SimpleXMLRPCServer |
| 348 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 349 | |
| 350 | def python_logo(): |
Victor Stinner | 757db83 | 2010-01-30 02:16:55 +0000 | [diff] [blame] | 351 | with open("python_logo.jpg", "rb") as handle: |
| 352 | return xmlrpc.client.Binary(handle.read()) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 353 | |
| 354 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 355 | print("Listening on port 8000...") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 356 | server.register_function(python_logo, 'python_logo') |
| 357 | |
| 358 | server.serve_forever() |
| 359 | |
| 360 | The client gets the image and saves it to a file:: |
| 361 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 362 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 363 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 364 | proxy = xmlrpc.client.ServerProxy("http://localhost:8000/") |
Victor Stinner | 757db83 | 2010-01-30 02:16:55 +0000 | [diff] [blame] | 365 | with open("fetched_python_logo.jpg", "wb") as handle: |
| 366 | handle.write(proxy.python_logo().data) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 367 | |
| 368 | .. _fault-objects: |
| 369 | |
| 370 | Fault Objects |
| 371 | ------------- |
| 372 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 373 | .. class:: Fault |
| 374 | |
| 375 | A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault |
| 376 | objects have the following attributes: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 377 | |
| 378 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 379 | .. attribute:: faultCode |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 380 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 381 | A string indicating the fault type. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 382 | |
| 383 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 384 | .. attribute:: faultString |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 385 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 386 | A string containing a diagnostic message associated with the fault. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 387 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 388 | In the following example we're going to intentionally cause a :exc:`Fault` by |
| 389 | returning a complex type object. The server code:: |
| 390 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 391 | from xmlrpc.server import SimpleXMLRPCServer |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 392 | |
| 393 | # A marshalling error is going to occur because we're returning a |
| 394 | # complex number |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 395 | def add(x, y): |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 396 | return x+y+0j |
| 397 | |
| 398 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 399 | print("Listening on port 8000...") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 400 | server.register_function(add, 'add') |
| 401 | |
| 402 | server.serve_forever() |
| 403 | |
| 404 | The client code for the preceding server:: |
| 405 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 406 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 407 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 408 | proxy = xmlrpc.client.ServerProxy("http://localhost:8000/") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 409 | try: |
| 410 | proxy.add(2, 5) |
Georg Brandl | 0dedf45 | 2009-05-22 16:44:06 +0000 | [diff] [blame] | 411 | except xmlrpc.client.Fault as err: |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 412 | print("A fault occurred") |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 413 | print("Fault code: %d" % err.faultCode) |
| 414 | print("Fault string: %s" % err.faultString) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 415 | |
| 416 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 417 | |
| 418 | .. _protocol-error-objects: |
| 419 | |
| 420 | ProtocolError Objects |
| 421 | --------------------- |
| 422 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 423 | .. class:: ProtocolError |
| 424 | |
| 425 | A :class:`ProtocolError` object describes a protocol error in the underlying |
| 426 | transport layer (such as a 404 'not found' error if the server named by the URI |
| 427 | does not exist). It has the following attributes: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 428 | |
| 429 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 430 | .. attribute:: url |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 431 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 432 | The URI or URL that triggered the error. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 433 | |
| 434 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 435 | .. attribute:: errcode |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 436 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 437 | The error code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 438 | |
| 439 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 440 | .. attribute:: errmsg |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 441 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 442 | The error message or diagnostic string. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 443 | |
| 444 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 445 | .. attribute:: headers |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 446 | |
Serhiy Storchaka | da7880a | 2016-05-07 08:44:15 +0300 | [diff] [blame] | 447 | A dict containing the headers of the HTTP/HTTPS request that triggered the |
| 448 | error. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 449 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 450 | In the following example we're going to intentionally cause a :exc:`ProtocolError` |
| 451 | by providing an invalid URI:: |
| 452 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 453 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 454 | |
Martin Panter | 6245cb3 | 2016-04-15 02:14:19 +0000 | [diff] [blame] | 455 | # create a ServerProxy with a URI that doesn't respond to XMLRPC requests |
Benjamin Peterson | 5e55b3e | 2010-02-03 02:35:45 +0000 | [diff] [blame] | 456 | proxy = xmlrpc.client.ServerProxy("http://google.com/") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 457 | |
| 458 | try: |
| 459 | proxy.some_method() |
Georg Brandl | 0dedf45 | 2009-05-22 16:44:06 +0000 | [diff] [blame] | 460 | except xmlrpc.client.ProtocolError as err: |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 461 | print("A protocol error occurred") |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 462 | print("URL: %s" % err.url) |
| 463 | print("HTTP/HTTPS headers: %s" % err.headers) |
| 464 | print("Error code: %d" % err.errcode) |
| 465 | print("Error message: %s" % err.errmsg) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 466 | |
| 467 | MultiCall Objects |
| 468 | ----------------- |
| 469 | |
Sandro Tosi | 9daf98d | 2011-08-20 17:05:56 +0200 | [diff] [blame] | 470 | The :class:`MultiCall` object provides a way to encapsulate multiple calls to a |
| 471 | remote server into a single request [#]_. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 472 | |
| 473 | |
| 474 | .. class:: MultiCall(server) |
| 475 | |
| 476 | Create an object used to boxcar method calls. *server* is the eventual target of |
| 477 | the call. Calls can be made to the result object, but they will immediately |
| 478 | return ``None``, and only store the call name and parameters in the |
| 479 | :class:`MultiCall` object. Calling the object itself causes all stored calls to |
| 480 | be transmitted as a single ``system.multicall`` request. The result of this call |
Georg Brandl | 9afde1c | 2007-11-01 20:32:30 +0000 | [diff] [blame] | 481 | is a :term:`generator`; iterating over this generator yields the individual |
| 482 | results. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 483 | |
Andrew Kuchling | c3db373 | 2013-06-20 21:33:05 -0400 | [diff] [blame] | 484 | A usage example of this class follows. The server code:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 485 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 486 | from xmlrpc.server import SimpleXMLRPCServer |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 487 | |
Ezio Melotti | 79016e1 | 2013-08-08 15:45:56 +0300 | [diff] [blame] | 488 | def add(x, y): |
| 489 | return x + y |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 490 | |
| 491 | def subtract(x, y): |
Ezio Melotti | 79016e1 | 2013-08-08 15:45:56 +0300 | [diff] [blame] | 492 | return x - y |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 493 | |
| 494 | def multiply(x, y): |
Ezio Melotti | 79016e1 | 2013-08-08 15:45:56 +0300 | [diff] [blame] | 495 | return x * y |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 496 | |
| 497 | def divide(x, y): |
Andrew Kuchling | c3db373 | 2013-06-20 21:33:05 -0400 | [diff] [blame] | 498 | return x // y |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 499 | |
| 500 | # A simple server with simple arithmetic functions |
| 501 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 502 | print("Listening on port 8000...") |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 503 | server.register_multicall_functions() |
| 504 | server.register_function(add, 'add') |
| 505 | server.register_function(subtract, 'subtract') |
| 506 | server.register_function(multiply, 'multiply') |
| 507 | server.register_function(divide, 'divide') |
| 508 | server.serve_forever() |
| 509 | |
| 510 | The client code for the preceding server:: |
| 511 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 512 | import xmlrpc.client |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 513 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 514 | proxy = xmlrpc.client.ServerProxy("http://localhost:8000/") |
| 515 | multicall = xmlrpc.client.MultiCall(proxy) |
Ezio Melotti | 79016e1 | 2013-08-08 15:45:56 +0300 | [diff] [blame] | 516 | multicall.add(7, 3) |
| 517 | multicall.subtract(7, 3) |
| 518 | multicall.multiply(7, 3) |
| 519 | multicall.divide(7, 3) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 520 | result = multicall() |
| 521 | |
Ezio Melotti | 79016e1 | 2013-08-08 15:45:56 +0300 | [diff] [blame] | 522 | print("7+3=%d, 7-3=%d, 7*3=%d, 7//3=%d" % tuple(result)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 523 | |
| 524 | |
| 525 | Convenience Functions |
| 526 | --------------------- |
| 527 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 528 | .. function:: dumps(params, methodname=None, methodresponse=None, encoding=None, allow_none=False) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 529 | |
| 530 | Convert *params* into an XML-RPC request. or into a response if *methodresponse* |
| 531 | is true. *params* can be either a tuple of arguments or an instance of the |
| 532 | :exc:`Fault` exception class. If *methodresponse* is true, only a single value |
| 533 | can be returned, meaning that *params* must be of length 1. *encoding*, if |
| 534 | supplied, is the encoding to use in the generated XML; the default is UTF-8. |
| 535 | Python's :const:`None` value cannot be used in standard XML-RPC; to allow using |
| 536 | it via an extension, provide a true value for *allow_none*. |
| 537 | |
| 538 | |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 539 | .. function:: loads(data, use_datetime=False, use_builtin_types=False) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 540 | |
| 541 | Convert an XML-RPC request or response into Python objects, a ``(params, |
| 542 | methodname)``. *params* is a tuple of argument; *methodname* is a string, or |
| 543 | ``None`` if no method name is present in the packet. If the XML-RPC packet |
| 544 | represents a fault condition, this function will raise a :exc:`Fault` exception. |
Florent Xicluna | 6166519 | 2011-11-15 20:53:25 +0100 | [diff] [blame] | 545 | The *use_builtin_types* flag can be used to cause date/time values to be |
| 546 | presented as :class:`datetime.datetime` objects and binary data to be |
| 547 | presented as :class:`bytes` objects; this flag is false by default. |
| 548 | |
| 549 | The obsolete *use_datetime* flag is similar to *use_builtin_types* but it |
| 550 | applies only to date/time values. |
| 551 | |
| 552 | .. versionchanged:: 3.3 |
| 553 | The *use_builtin_types* flag was added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 554 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 555 | |
| 556 | .. _xmlrpc-client-example: |
| 557 | |
| 558 | Example of Client Usage |
| 559 | ----------------------- |
| 560 | |
| 561 | :: |
| 562 | |
| 563 | # simple test program (from the XML-RPC specification) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 564 | from xmlrpc.client import ServerProxy, Error |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 565 | |
| 566 | # server = ServerProxy("http://localhost:8000") # local server |
Brett Cannon | 33a4000 | 2014-03-21 11:24:40 -0400 | [diff] [blame] | 567 | with ServerProxy("http://betty.userland.com") as proxy: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 568 | |
Brett Cannon | 33a4000 | 2014-03-21 11:24:40 -0400 | [diff] [blame] | 569 | print(proxy) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 570 | |
Brett Cannon | 33a4000 | 2014-03-21 11:24:40 -0400 | [diff] [blame] | 571 | try: |
| 572 | print(proxy.examples.getStateName(41)) |
| 573 | except Error as v: |
| 574 | print("ERROR", v) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 575 | |
Martin Panter | 1c5e715 | 2016-02-22 09:04:22 +0000 | [diff] [blame] | 576 | To access an XML-RPC server through a HTTP proxy, you need to define a custom |
Berker Peksag | 0aa7887 | 2016-10-09 18:18:21 +0300 | [diff] [blame] | 577 | transport. The following example shows how:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 578 | |
Berker Peksag | 0aa7887 | 2016-10-09 18:18:21 +0300 | [diff] [blame] | 579 | import http.client |
| 580 | import xmlrpc.client |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 581 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 582 | class ProxiedTransport(xmlrpc.client.Transport): |
Berker Peksag | 0aa7887 | 2016-10-09 18:18:21 +0300 | [diff] [blame] | 583 | |
| 584 | def set_proxy(self, host, port=None, headers=None): |
| 585 | self.proxy = host, port |
| 586 | self.proxy_headers = headers |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 587 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 588 | def make_connection(self, host): |
Berker Peksag | 0aa7887 | 2016-10-09 18:18:21 +0300 | [diff] [blame] | 589 | connection = http.client.HTTPConnection(*self.proxy) |
| 590 | connection.set_tunnel(host, headers=self.proxy_headers) |
| 591 | self._connection = host, connection |
| 592 | return connection |
Serhiy Storchaka | dba9039 | 2016-05-10 12:01:23 +0300 | [diff] [blame] | 593 | |
Berker Peksag | 0aa7887 | 2016-10-09 18:18:21 +0300 | [diff] [blame] | 594 | transport = ProxiedTransport() |
| 595 | transport.set_proxy('proxy-server', 8080) |
| 596 | server = xmlrpc.client.ServerProxy('http://betty.userland.com', transport=transport) |
| 597 | print(server.examples.getStateName(41)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 598 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 599 | |
| 600 | Example of Client and Server Usage |
| 601 | ---------------------------------- |
| 602 | |
| 603 | See :ref:`simplexmlrpcserver-example`. |
| 604 | |
| 605 | |
Sandro Tosi | 9daf98d | 2011-08-20 17:05:56 +0200 | [diff] [blame] | 606 | .. rubric:: Footnotes |
| 607 | |
| 608 | .. [#] This approach has been first presented in `a discussion on xmlrpc.com |
Serhiy Storchaka | 6dff020 | 2016-05-07 10:49:07 +0300 | [diff] [blame] | 609 | <https://web.archive.org/web/20060624230303/http://www.xmlrpc.com/discuss/msgReader$1208?mode=topic>`_. |
Sandro Tosi | 9daf98d | 2011-08-20 17:05:56 +0200 | [diff] [blame] | 610 | .. the link now points to webarchive since the one at |
| 611 | .. http://www.xmlrpc.com/discuss/msgReader%241208 is broken (and webadmin |
| 612 | .. doesn't reply) |