svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Thu, 16 May 2013 14:46:20 +0900
changeset 1154 da9ccfceff31
parent 728 e0424e96e3fd
permissions -rw-r--r--
Fixed build error with python <-> PLCglobals variables declared with no initial value
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