Re: [web2py] Re: Planning to use Web2py CAS as Authnication service for Tornado

2014-09-05 Thread Phyo Arkar
Thanks alot massimo, i haven't seen that. class PostHandler(tornado.web.RequestHandler): """ only authorized parties can post messages """ def post(self): if hmac_key and not 'signature' in self.request.arguments: return None if 'message' in self.request.arguments: message = self.request.arguments

[web2py] Re: Planning to use Web2py CAS as Authnication service for Tornado

2014-08-14 Thread Massimo Di Pierro
Did you see this: https://github.com/web2py/web2py/blob/master/gluon/contrib/websocket_messaging.py On Thursday, 14 August 2014 09:18:41 UTC-5, Phyo Arkar wrote: > > In our new application , it will be interactive Chat + Social > Media/News/Forum discussion. > For most interactive part it will b