43 require_once
'XML/RPC2/Exception.php';
44 require_once
'XML/RPC2/Backend.php';
138 public abstract function remoteCall___($methodName, $parameters);
155 if (!$uriParse = parse_url(
$uri)) {
166 if (!$proxyParse = parse_url(
$options[
'proxy'])) {
167 throw new XML_RPC2_InvalidProxyException(sprintf(
'Proxy URI \'%s\' is not valid',
$options[
'proxy']));
172 if (!(is_bool(
$options[
'debug']))) {
179 $this->encoding =
$options[
'encoding'];
181 if (isset(
$options[
'uglyStructHack'])) {
182 $this->uglyStructHack =
$options[
'uglyStructHack'];
185 if (!(is_bool(
$options[
'sslverify']))) {
188 $this->sslverify =
$options[
'sslverify'];
230 public function __call($methodName, $parameters)
232 $args = array($methodName, $parameters);
233 return @call_user_func_array(array($this,
'remoteCall___'), $args);
251 print
"***** Request *****\n";
252 print htmlspecialchars($request);
253 print
"***** End Of request *****\n\n";
254 print
"***** Server response *****\n";
255 print htmlspecialchars($body);
256 print
"\n***** End of server response *****\n\n";
272 print
"***** Decoded result *****\n";
274 print
"\n***** End of decoded result *****";
292 return (preg_match(
'~^[a-zA-Z0-9_.:/]*$~', $methodName));
__call($methodName, $parameters)
__call Catchall.
static setBackend($backend)
Backend setter.
static getClientClassname()
Include the relevant php files for the client class, and return the backend client class name...
remoteCall___($methodName, $parameters)
remoteCall executes the XML-RPC call, and returns the result
displayDebugInformations___($request, $body)
Display debug informations.
$uglyStructHack
ugly hack flag to avoid http://bugs.php.net/bug.php?id=21949
displayDebugInformations2___($result)
Display debug informations (part 2)
__construct($uri, $options=array())
Construct a new XML_RPC2_Client.
if(!is_array($argv)) $options
testMethodName___($methodName)
Return true is the given method name is ok with XML/RPC spec.
static create($uri, $options=array())
Factory method to select, create and return a XML_RPC2_Client backend.