plugins/python/modules/svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Tue, 24 May 2011 00:36:08 +0200
changeset 606 780bd150ebba
parent 371 b7cb57a2da08
permissions -rw-r--r--
Fixed runtime with twisted but without Wx (-x 0 -t 1), made non-Zeroconf a default option, i.e when -n not specified
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