Changes between Version 2 and Version 3 of Simplistic_json_rpc-dispatcher


Ignore:
Timestamp:
Sep 15, 2009, 10:31:41 AM (15 years ago)
Author:
floydpetrus
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Simplistic_json_rpc-dispatcher

    v2 v3  
    99
    1010def JSON_RPC_io(object):
    11       methods = Set(['<method1>', '<metohod2>', '<method3>', ....])  # Set of available service method names
     11      methods = Set(['<method1>', '<method2>', '<method3>', ....])  # Set of available service method names
    1212      rpc_inputs = jsonrpc.json.loads(object.raw_post_data)
    1313      sub_eval = str(rpc_inputs['method']) + '(rpc_inputs[\'params\'])'
Back to Top