json-rpc2php icon indicating copy to clipboard operation
json-rpc2php copied to clipboard

A json-rpc 2.0 server for php and some clients for php,js,python and vala.

Results 7 json-rpc2php issues
Sort by recently updated
recently updated
newest added

Avoiding accessing with undefined index

call_user_func_array() expects parameter 1 to be a valid callback, first array member is not a valid class name or object in json-rpc2php-master/jsonRPC2Server.php my php version 5.6

try to connect odoo to php by xml-rpc but i got these error ![php](https://user-images.githubusercontent.com/34648267/36471380-4aaaaba0-16ff-11e8-8496-9661a7f735af.png)

I have JS client: In JS I have function: ----------------------Start code------------------- var codebook_onlinedb; function getCodeBook() { jsonrpcclient = new jsonrpcphp('http://some.url/server.php', function() { jsonrpcclient.cCodeBook.getCodeBook("inout", function(jsonRpcObj) { codebook_onlinedb = $.map(jsonRpcObj.result, function(value, index)...

helllo On the server there is something sttrage : in funtion private function validate() { ....... if (!isset($this->classes[$this->extension]) || !method_exists($this->classes[$this->extension],$this->request['method']) && $this->extension != "rpc"){ ###hacks if($this->request['method']!='listMethods'){ throw new Exception($this->errorCodes['methodNotFound']); }###hacks...

If I write a sample perl client, will you accept the code?

Implement batch rpc calls

Php