svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Wed, 28 May 2014 11:50:38 +0200
changeset 1410 0d34b69cc9b5
parent 728 e0424e96e3fd
permissions -rw-r--r--
Propagated changes made in matiec/lib/accessor.h _SET_VAR macro (Mario's matiec changes merged at 39086e324665) to py_ext library, and other (not compiled in) XML standard FB definitions.
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