• Home
  • Raw
  • Download

Lines Matching refs:XML

1 :mod:`xmlrpc.server` --- Basic XML-RPC servers
5 :synopsis: Basic XML-RPC server implementations.
14 The :mod:`xmlrpc.server` module provides a basic server framework for XML-RPC
32 functions that can be called by the XML-RPC protocol. The *requestHandler*
38 on to :mod:`xmlrpc.client` and control the XML-RPC responses that will be returned
54 Create a new instance to handle XML-RPC requests in a CGI environment. The
56 and control the XML-RPC responses that will be returned from the server.
79 alone XML-RPC servers.
84 Register a function that can respond to XML-RPC requests. If *name* is given,
126 Registers the XML-RPC introspection functions ``system.listMethods``,
132 Registers the XML-RPC multicall function system.multicall.
138 for receiving XML-RPC requests. Requests posted to other paths will result in a
171 # published as XML-RPC methods (in this case, just 'mul').
252 print('Serving XML-RPC on localhost port 8000')
292 The :class:`CGIXMLRPCRequestHandler` class can be used to handle XML-RPC
298 Register a function that can respond to XML-RPC requests. If *name* is given,
327 Register the XML-RPC introspection functions ``system.listMethods``,
333 Register the XML-RPC multicall function ``system.multicall``.
338 Handle an XML-RPC request. If *request_text* is given, it should be the POST
379 Create a new instance to handle XML-RPC requests in a CGI environment.
384 Create a new request handler instance. This request handler supports XML-RPC
396 and provides a means of creating self-documenting, stand alone XML-RPC
397 servers. HTTP POST requests are handled as XML-RPC method calls. HTTP GET
425 self-documenting, XML-RPC CGI scripts. HTTP POST requests are handled as XML-RPC