Comment 1 for bug 1100346

Revision history for this message
Sébastien Alix (sebastien-alix) wrote : Re: Add support for the JSON-RPC protocol

Look at 'web/static/src/js/core.js:

        var payload = {
            jsonrpc: '2.0',
            method: 'call',
            params: params,
            id: _.uniqueId('r')
        };
        ...
        var request = this.rpc_function(url, payload).then(...)

Make HTTP requests on the 'http://{server}:{port}/jsonrpc' URL with these JSON data.