|
OverSim
|
Classes | |
| class | XmlRpcErrorHandler |
| An interface allowing custom handling of error message reporting. More... | |
| class | XmlRpcLogHandler |
| An interface allowing custom handling of informational message reporting. More... | |
| class | XmlRpcClient |
| A class to send XML RPC requests to a server and return the results. More... | |
| class | XmlRpcDispatch |
| An object which monitors file descriptors for events and performs callbacks when interesting events happen. More... | |
| class | XmlRpcException |
| A class representing an error. More... | |
| class | XmlRpcMutex |
| A simple platform-independent mutex API implemented for posix and windows. More... | |
| class | XmlRpcServer |
| A class to handle XML RPC requests. More... | |
| class | XmlRpcServerConnection |
| A class to handle XML RPC requests from a particular client. More... | |
| class | XmlRpcServerMethod |
| Abstract class representing a single RPC method. More... | |
| class | XmlRpcSocket |
| A platform-independent socket API. More... | |
| class | XmlRpcSource |
| An RPC source represents a file descriptor to monitor. More... | |
| class | XmlRpcRunnable |
| An abstract class providing an interface for objects that can run in a separate thread. More... | |
| class | XmlRpcThread |
| A simple platform-independent thread API implemented for posix and windows. More... | |
| class | XmlRpcThreadedServer |
| A class to handle multiple simultaneous XML RPC requests. More... | |
| class | XmlRpcUtil |
| Utilities for XML parsing, encoding, and decoding and message handlers. More... | |
| class | XmlRpcValue |
| A class to represent RPC arguments and results. More... | |
Functions | |
| int | getVerbosity () |
| Returns log message verbosity. This is short for XmlRpcLogHandler::getVerbosity() | |
| void | setVerbosity (int level) |
| Sets log message verbosity. This is short for XmlRpcLogHandler::setVerbosity(level) | |
| static bool | tmEq (struct tm const &t1, struct tm const &t2) |
Variables | |
| const char | XMLRPC_VERSION [] = "XMLRPC++ 0.8" |
| Version identifier. | |
| static const char | VALUE_TAG [] = "<value>" |
| static const char | VALUE_ETAG [] = "</value>" |
| static const char | BOOLEAN_TAG [] = "<boolean>" |
| static const char | BOOLEAN_ETAG [] = "</boolean>" |
| static const char | DOUBLE_TAG [] = "<double>" |
| static const char | DOUBLE_ETAG [] = "</double>" |
| static const char | INT_TAG [] = "<int>" |
| static const char | I4_TAG [] = "<i4>" |
| static const char | I4_ETAG [] = "</i4>" |
| static const char | STRING_TAG [] = "<string>" |
| static const char | DATETIME_TAG [] = "<dateTime.iso8601>" |
| static const char | DATETIME_ETAG [] = "</dateTime.iso8601>" |
| static const char | BASE64_TAG [] = "<base64>" |
| static const char | BASE64_ETAG [] = "</base64>" |
| static const char | ARRAY_TAG [] = "<array>" |
| static const char | DATA_TAG [] = "<data>" |
| static const char | DATA_ETAG [] = "</data>" |
| static const char | ARRAY_ETAG [] = "</array>" |
| static const char | STRUCT_TAG [] = "<struct>" |
| static const char | MEMBER_TAG [] = "<member>" |
| static const char | NAME_TAG [] = "<name>" |
| static const char | NAME_ETAG [] = "</name>" |
| static const char | MEMBER_ETAG [] = "</member>" |
| static const char | STRUCT_ETAG [] = "</struct>" |
| int XmlRpc::getVerbosity | ( | ) |
Returns log message verbosity. This is short for XmlRpcLogHandler::getVerbosity()
Definition at line 71 of file XmlRpcUtil.cc.
| void XmlRpc::setVerbosity | ( | int | level | ) |
Sets log message verbosity. This is short for XmlRpcLogHandler::setVerbosity(level)
Definition at line 72 of file XmlRpcUtil.cc.
Referenced by XmlRpcInterface::initializeApp().
|
static |
Definition at line 147 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::operator==().
|
static |
Definition at line 41 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::arrayToXml().
|
static |
Definition at line 38 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::arrayToXml(), and XmlRpc::XmlRpcValue::fromXml().
|
static |
Definition at line 36 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::binaryToXml().
|
static |
Definition at line 35 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::binaryToXml(), and XmlRpc::XmlRpcValue::fromXml().
|
static |
Definition at line 26 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::boolToXml().
|
static |
Definition at line 25 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::boolToXml(), and XmlRpc::XmlRpcValue::fromXml().
|
static |
Definition at line 40 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::arrayFromXml(), and XmlRpc::XmlRpcValue::arrayToXml().
|
static |
Definition at line 39 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::arrayFromXml(), and XmlRpc::XmlRpcValue::arrayToXml().
|
static |
Definition at line 34 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::timeToXml().
|
static |
Definition at line 33 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::fromXml(), and XmlRpc::XmlRpcValue::timeToXml().
|
static |
Definition at line 28 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::doubleToXml().
|
static |
Definition at line 27 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::doubleToXml(), and XmlRpc::XmlRpcValue::fromXml().
|
static |
Definition at line 31 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::intToXml().
|
static |
Definition at line 30 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::fromXml(), and XmlRpc::XmlRpcValue::intToXml().
|
static |
Definition at line 29 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::fromXml().
|
static |
Definition at line 47 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::structFromXml(), and XmlRpc::XmlRpcValue::structToXml().
|
static |
Definition at line 44 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::structFromXml(), and XmlRpc::XmlRpcValue::structToXml().
|
static |
Definition at line 46 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::structToXml().
|
static |
Definition at line 45 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::structFromXml(), and XmlRpc::XmlRpcValue::structToXml().
|
static |
Definition at line 32 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::fromXml().
|
static |
Definition at line 48 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::structToXml().
|
static |
Definition at line 43 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::fromXml(), and XmlRpc::XmlRpcValue::structToXml().
|
static |
Definition at line 23 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::arrayToXml(), XmlRpc::XmlRpcValue::binaryToXml(), XmlRpc::XmlRpcValue::boolToXml(), XmlRpc::XmlRpcValue::doubleToXml(), XmlRpc::XmlRpcValue::fromXml(), XmlRpc::XmlRpcValue::intToXml(), XmlRpc::XmlRpcValue::stringToXml(), XmlRpc::XmlRpcValue::structToXml(), and XmlRpc::XmlRpcValue::timeToXml().
|
static |
Definition at line 22 of file XmlRpcValue.cc.
Referenced by XmlRpc::XmlRpcValue::arrayToXml(), XmlRpc::XmlRpcValue::binaryToXml(), XmlRpc::XmlRpcValue::boolToXml(), XmlRpc::XmlRpcValue::doubleToXml(), XmlRpc::XmlRpcValue::fromXml(), XmlRpc::XmlRpcValue::intToXml(), XmlRpc::XmlRpcValue::stringToXml(), XmlRpc::XmlRpcValue::structToXml(), and XmlRpc::XmlRpcValue::timeToXml().
| const char XmlRpc::XMLRPC_VERSION = "XMLRPC++ 0.8" |
Version identifier.
Definition at line 29 of file XmlRpcUtil.cc.
Referenced by XmlRpc::XmlRpcClient::generateHeader(), and XmlRpc::XmlRpcServer::generateHeader().