svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Thu, 18 Oct 2018 13:17:48 +0200
changeset 2314 e927c101ce6d
parent 728 e0424e96e3fd
permissions -rw-r--r--
PYRO/TLSPSK : must use PYROLOC* protocol scheme in pyro URI, otherwise object ID is missing. Had to use more persuasive pyro3 monkey patching to have PYROLOCPSK resolved properly
These classes are intended for use server-side.

e.g. in a django view.py :

    from pyjs.jsonrpc.django import JSONService, jsonremote

    jsonservice = JSONRPCService()

    @jsonremote(jsonservice)
    def test(request, echo_param):
         return "echoing the param back: %s" % echo_param