X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2FPhpXmlRpc.php;h=8b64d079f0e88e838996609bd0fc584b60ac2df7;hb=7fbd194478e080d624bab075d189bf3ba215325d;hp=ed49ac8da18c6cd88a775f49c8e11f5db6b34595;hpb=7ee6fa00d3dbc58c0f2b15c5a261895e43c8be1f;p=plcapi.git diff --git a/src/PhpXmlRpc.php b/src/PhpXmlRpc.php index ed49ac8..8b64d07 100644 --- a/src/PhpXmlRpc.php +++ b/src/PhpXmlRpc.php @@ -36,22 +36,22 @@ class PhpXmlRpc static public $xmlrpcstr = array( 'unknown_method' => 'Unknown method', - 'invalid_return' => 'Invalid return payload: enable debugging to examine incoming payload', + 'invalid_return' => 'Invalid response payload (you can use the setDebug method to allow analysis of the response)', 'incorrect_params' => 'Incorrect parameters passed to method', 'introspect_unknown' => "Can't introspect: method unknown", - 'http_error' => "Didn't receive 200 OK from remote server.", - 'no_data' => 'No data received from server.', - 'no_ssl' => 'No SSL support compiled in.', + 'http_error' => "Didn't receive 200 OK from remote server", + 'no_data' => 'No data received from server', + 'no_ssl' => 'No SSL support compiled in', 'curl_fail' => 'CURL error', 'invalid_request' => 'Invalid request payload', - 'no_curl' => 'No CURL support compiled in.', + 'no_curl' => 'No CURL support compiled in', 'server_error' => 'Internal server error', 'multicall_error' => 'Received from server invalid multicall response', 'multicall_notstruct' => 'system.multicall expected struct', - 'multicall_nomethod' => 'missing methodName', + 'multicall_nomethod' => 'Missing methodName', 'multicall_notstring' => 'methodName is not a string', - 'multicall_recursion' => 'recursive system.multicall forbidden', - 'multicall_noparams' => 'missing params', + 'multicall_recursion' => 'Recursive system.multicall forbidden', + 'multicall_noparams' => 'Missing params', 'multicall_notarray' => 'params is not an array', 'cannot_decompress' => 'Received from server compressed HTTP and cannot decompress', @@ -79,7 +79,7 @@ class PhpXmlRpc public static $xmlrpc_internalencoding = "UTF-8"; public static $xmlrpcName = "XML-RPC for PHP"; - public static $xmlrpcVersion = "4.3.0"; + public static $xmlrpcVersion = "4.3.2"; // let user errors start at 800 public static $xmlrpcerruser = 800;