![]() |
Qore xml Module 2.1.0
|
XML-RPC Handler implementation; to be registered as a request handler in the HttpServer class. More...
#include <XmlRpcHandler.qm.dox.h>
Inherits AbstractHttpRequestHandler.
Public Member Methods | |
| void | constructor (soft< code > n_getLogMessage, bool dbg, soft< code > log, HttpServer::AbstractAuthenticator auth, list methods, soft< string > n_get_prefix) |
| creates the handler with the given method list | |
| void | addMethod (auto cmark, int logopt, string help, string text, string name, code func) |
| adds a method to the handler dynamically | |
| void | setDebug (bool dbg) |
| turns on or off debugging; when debugging is enabled more verbose error messages are reported | |
| bool | getDebug () |
| returns the current status of the debug flag | |
XML-RPC Handler implementation; to be registered as a request handler in the HttpServer class.
| void XmlRpcHandler::XmlRpcHandler::addMethod | ( | auto | cmark, |
| int | logopt, | ||
| string | help, | ||
| string | text, | ||
| string | name, | ||
| code | func | ||
| ) |
adds a method to the handler dynamically
| name | a regular expression to use for matching the method name |
| func | a string (giving a function name to call), a call reference, or a closure to call with the deserialized arguments to the method; the return value will be serialized to XML-RPC and sent back to the caller |
| text | the human-readable name of the method |
| help | help text for the method |
| logopt | log options which can be used by a custom logger (see the getLogMessage parameter) |
| cmark | any value that will be added in the method hash under the "cmark" key |
| void XmlRpcHandler::XmlRpcHandler::constructor | ( | soft< code > | n_getLogMessage, |
| bool | dbg, | ||
| soft< code > | log, | ||
| HttpServer::AbstractAuthenticator | auth, | ||
| list | methods, | ||
| soft< string > | n_get_prefix | ||
| ) |
creates the handler with the given method list
| auth | an authentication object (use new AbstractAuthenticator() for no authentication) |
| methods | a list of hashes with the following keys:
|
| n_getLogMessage | an optional closure or call reference to be called when an incoming request is received; if this is set then it will be called with the following arguments: a context hash (see HttpServer::AbstractHttpRequestHandler::handleRequest() for a description of the context h ash), the method definition as passed in the methods argument to this constructor, and a reference to the arguments in this call |
| dbg | this parameter is set to True, then additional information will be logged when errors occur |
| n_get_prefix | prefix to add to derived methods with GET requests if no "." characters are in the path |
| log | an optional closure or call reference to be called when logging |
| XML-RPC-CONSTRUCTOR-ERROR | missing "name", "function", or "text" key in method hash, \c "function" key not assigned to a callable value |