コード例 #1
0
    def _parseError(self):
        """
        Coin a 'parse error' response and finish the request.
        """

        response = jsonrpc.parseError()
        self._sendResponse(response)
コード例 #2
0
    def _parseError(self):
        """
        Coin a 'parse error' response and finish the request.
        """

        response = jsonrpc.parseError()
        self._sendResponse(response)
コード例 #3
0
ファイル: server.py プロジェクト: auxten/fastjsonrpc
    def _parseError(self, request):
        """
        Coin a 'parse error' response and finish the request.

        @type request: t.w.s.Request
        @param request: Request from client
        """

        response = jsonrpc.parseError()
        self._sendResponse(response, request)
コード例 #4
0
ファイル: server.py プロジェクト: gwartass/fastjsonrpc
    def _parseError(self, request):
        """
        Coin a 'parse error' response and finish the request.

        @type request: t.w.s.Request
        @param request: Request from client
        """

        response = jsonrpc.parseError()
        self._sendResponse(response, request)