cakyus / jsonrpc

Simple implementation of JSON-RPC in Javascript and PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSONRPC

About

Simple implementation of JSON-RPC in Javascript and PHP

Example

// call method "jsonRpcSum" in the server and return the result

var rpc = new jsonrpc('http://127.0.0.1/jsonrpc.php');
rpc.call('jsonRpcSum', [1,2,3], function(response) {
	alert(response.result); // 6
});

About

Simple implementation of JSON-RPC in Javascript and PHP

License:GNU General Public License v2.0


Languages

Language:PHP 76.5%Language:JavaScript 13.4%Language:HTML 10.1%