[web2py] Re: websockets with web2py

2017-11-03 Thread Omicron VT
I think you have problem1 of this issue: https://github.com/web2py/web2py/issues/1696 El domingo, 25 de septiembre de 2016, 17:46:02 (UTC-3), José Borba escribió: > > Hello, there, > > I'm using web2py on Cloud9[1], and web2py works well. I'm working on an > app that need websockets, following a

[web2py] Re: websockets

2016-01-17 Thread Massimo Di Pierro
I think it is in from pydal.adapters.base import BaseAdapter On Sunday, 17 January 2016 15:52:37 UTC-6, 黄祥 wrote: > > i've followed the steps but end it with an error occured : > *running run_iochat.py from terminal* > > (site)MacBook:~ MacBookPro$ python ~/site/web2py/run_iochat.py > > Traceba

[web2py] Re: websockets

2016-01-17 Thread 黄祥
i've followed the steps but end it with an error occured : *running run_iochat.py from terminal* (site)MacBook:~ MacBookPro$ python ~/site/web2py/run_iochat.py Traceback (most recent call last): File "/Users/MacBookPro/site/web2py/run_iochat.py", line 8, in from gluon.main import wsgibas

[web2py] Re: WebSockets, AMQP, Where to Place Code

2015-01-19 Thread Massimo Di Pierro
2 (in your app modules) is the right thing to do. Not sure why it does not work on GAE. What web2py version are you using? Can you try the latest? Another option is put the libraries is web2py/site-packages which is added on sys.path by default. Please keep us updated about your progress. This

[web2py] Re: websockets

2014-04-28 Thread Ruud Schroen
Web2Py seems to start, but everytime i load the page i get a ticket. When i try to open the ticket it says: admin disabled because unable to access password file My routes.py is like this: routes_in = ( ('/socket.io/$anything', '/iochat/default/socketio/$anything'), ) -- Resources: - htt

[web2py] Re: websockets

2013-07-03 Thread shartha
Thank you Recardo. I am sorry for being late to reply back. I appreciate your time and help. On Thursday, June 13, 2013 8:36:31 PM UTC-5, shartha wrote: > > Hello. Some questions about websockets: > 1) Can websockets be implemented within web2py without any in-socket > server side component? >

Re: [web2py] Re: websockets

2013-06-14 Thread António Ramos
web2py + tornado http://vimeo.com/38972256 2013/6/14 samuel bonilla > Web2py + node.js > > El viernes, 14 de junio de 2013 09:36:31 UTC+8, shartha escribió: > >> Hello. Some questions about websockets: >> 1) Can websockets be implemented within web2py without any in-socket >> server side compo

[web2py] Re: websockets

2013-06-13 Thread samuel bonilla
Web2py + node.js El viernes, 14 de junio de 2013 09:36:31 UTC+8, shartha escribió: > > Hello. Some questions about websockets: > 1) Can websockets be implemented within web2py without any in-socket > server side component? > 2) If yes, how is the constructor used on a local machine in the > cons

[web2py] Re: websockets

2013-06-13 Thread Massimo Di Pierro
On Thursday, 13 June 2013 20:36:31 UTC-5, shartha wrote: > > Hello. Some questions about websockets: > 1) Can websockets be implemented within web2py without any in-socket > server side component? The problem is that it needs an async server to be any useful. Rocket is not async, it is multi-

[web2py] Re: WebSockets with web2py?

2010-10-26 Thread Ruiwen Chua
Thanks, but is there server-side support for WebSockets in Web2py? >From what I understand, the server needs to be able to understand upgrading the normal HTTP connection into a WebSocket connection. On Oct 26, 6:56 pm, blackthorne wrote: > Just add your (javascript?) code for that as any other

[web2py] Re: WebSockets with web2py?

2010-10-26 Thread blackthorne
Just add your (javascript?) code for that as any other in the View side. Regards On Oct 26, 11:28 am, Ruiwen Chua wrote: > Hi, > > Does anyone know of a way to use WebSockets with web2py?