Qore xml Module 1.8.1
|
class for XML-RPC connections; returns Qore::Xml::XmlRpcClient objects More...
#include <XmlRpcConnection.qm.dox.h>
Inherits ConnectionProvider::HttpBasedConnection.
Public Member Methods | |
constructor (string name, string description, string url, hash< auto > attributes={}, hash< auto > options={}) | |
creates the XmlRpcConnection object More... | |
string | getType () |
returns "xmlrpc" | |
Public Attributes | |
const | ConnectionScheme |
Connection entry info. | |
Private Member Methods | |
Qore::Xml::XmlRpcClient | getImpl (bool connect=True, *hash< auto > rtopts) |
returns a Qore::Xml::XmlRpcClient object More... | |
hash< ConnectionSchemeInfo > | getConnectionSchemeInfoImpl () |
Returns the ConnectionSchemeInfo hash for this object. | |
class for XML-RPC connections; returns Qore::Xml::XmlRpcClient objects
supports the following options:
"http_version"
: HTTP version to use ("1.0"
or "1.1"
, defaults to "1.1"
)"max_redirects"
: maximum redirects to support"proxy"
: proxy URL to use"timeout"
: transfer timeout to use in milliseconds"connect_timeout"
: connection timeout to use in millisecondsXmlRpcConnection::XmlRpcConnection::constructor | ( | string | name, |
string | description, | ||
string | url, | ||
hash< auto > | attributes = {} , |
||
hash< auto > | options = {} |
||
) |
creates the XmlRpcConnection object
name | the name of the connection |
description | connection description |
url | connection URL (potentially with password info) |
attributes | various attributes. See below |
options | connection options |
See AbstractConnection::constructor() for attributes
and options
reference.
|
private |
returns a Qore::Xml::XmlRpcClient object
connect | if True, then the connection is returned already connected |
rtopts | this connection type does not accept any runtime options, so this parameter is ignored |