svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Tue, 27 Nov 2018 13:34:14 +0100
changeset 2462 ed6b0e905fcb
parent 728 e0424e96e3fd
permissions -rw-r--r--
Fix failing PLC build when building freshly created project that use default libraries blocks. When controller loads libraries according to attibutes in project files (BeremizRoot/Enable_{libname}_Library), use known default if attribute is missing.
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