当前位置: 首页>>代码示例>>Python>>正文


Python SimpleJSONRPCRequestHandler.do_POST方法代码示例

本文整理汇总了Python中jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler.do_POST方法的典型用法代码示例。如果您正苦于以下问题:Python SimpleJSONRPCRequestHandler.do_POST方法的具体用法?Python SimpleJSONRPCRequestHandler.do_POST怎么用?Python SimpleJSONRPCRequestHandler.do_POST使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler的用法示例。


在下文中一共展示了SimpleJSONRPCRequestHandler.do_POST方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: do_POST

# 需要导入模块: from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCRequestHandler [as 别名]
# 或者: from jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler import do_POST [as 别名]
 def do_POST(self):
     # pylint: disable=E1101
     if self.path == '/RPC2':
         SimpleJSONRPCRequestHandler.do_POST(self)
     else:
         __pychecker__ = 'no-classattr'
         SimpleHTTPRequestHandler.do_POST(self)
开发者ID:christophgysin,项目名称:schoolbell,代码行数:9,代码来源:requesthandler.py

示例2: do_POST

# 需要导入模块: from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCRequestHandler [as 别名]
# 或者: from jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler import do_POST [as 别名]
    def do_POST(self):

        if self.auth_map != None:
            if self.headers.has_key('authorization') and self.headers['authorization'].startswith('Basic '):
                authenticationString = base64.b64decode(self.headers['authorization'].split(' ')[1])
                if authenticationString.find(':') != -1:
                    username, password = authenticationString.split(':', 1)
                    self.logger.info('Got request from %s:%s' % (username, password))

                    if self.auth_map.has_key(username) and self.verifyPassword(username, password):
                        return SimpleJSONRPCRequestHandler.do_POST(self)
                    else:
                        self.logger.error('Authentication failed for %s:%s' % (username, password))
            
            self.logger.error('Authentication failed')
            self.send_response(401)
            self.end_headers()
            return False

        return SimpleJSONRPCRequestHandler.do_POST(self)
开发者ID:agupta13,项目名称:google-cache,代码行数:22,代码来源:traceroute_service.py

示例3: do_POST

# 需要导入模块: from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCRequestHandler [as 别名]
# 或者: from jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler import do_POST [as 别名]
	def do_POST(self):
		if self.client_address[0] not in allowed_ips:
			self.send_error(403,"Your address is not in allowed_ips")
			return
		SimpleJSONRPCRequestHandler.do_POST(self)
开发者ID:dingensundso,项目名称:myMplayer,代码行数:7,代码来源:server.py


注:本文中的jsonrpclib.SimpleJSONRPCServer.SimpleJSONRPCRequestHandler.do_POST方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。