问题:除了使用this link和gevent-socketio与Socket.io.js实施之外,bottle上的示例的可比解决方案是什么?我正在寻找最小的解决方案,它将简单地将一些流量从客户端传递到服务器并使用gevent-socketio,Socket.io.js和bottle返回客户端。
后台:我开发了一个简单的网络应用程序,为服务器上的远程自定义shell(cli)提供基于Web的终端。浏览器(客户端)从表单输入字段收集shell命令,通过Web套接字将命令传递给gevent.pywsgi.WSGIServer
,通过geventwebsocket.WebSocketHandler
处理程序处理请求,该处理程序将命令提供给shell,通过套接字将输出异步返回到客户端浏览器中表单中的textarea字段。这是基于瓶子团队提供的一个很好的例子:
http://bottlepy.org/docs/dev/async.html#finally-websockets
此处提供冗余:
example_server.py :
from bottle import request, Bottle, abort
app = Bottle()
@app.route('/websocket')
def handle_websocket():
wsock = request.environ.get('wsgi.websocket')
if not wsock:
abort(400, 'Expected WebSocket request.')
while True:
try:
message = wsock.receive()
wsock.send("Your message was: %r" % message)
except WebSocketError:
break
from gevent.pywsgi import WSGIServer
from geventwebsocket import WebSocketHandler, WebSocketError
server = WSGIServer(("0.0.0.0", 8080), app,
handler_class=WebSocketHandler)
server.serve_forever()
client.html :
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var ws = new WebSocket("ws://example.com:8080/websocket");
ws.onopen = function() {
ws.send("Hello, world");
};
ws.onmessage = function (evt) {
alert(evt.data);
};
</script>
</head>
</html>
动机:我现有的应用在最新版本的Firefox和Chrome中运行良好。 IE支持不存在,Safari兼容性是middlin'。我最终正在寻找一种交叉浏览器解决方案来在客户端和服务器之间传递shell命令和输出。如果我有一个简单的瓶子示例,我想我可以更快地前进。
顺便说一下,我查看了gevent-socketio examples甚至是a bottle example,但所有这些示例都与上面的简单示例完全不同,以便我在应用程序中实现飞跃。 (gevent-socketio示例看起来与我熟悉的瓶子应用程序完全不同。而且,瓶子示例实际上并没有显示如何与客户端进行通信。)
谢谢! :)
答案 0 :(得分:1)
Circus!在zmq之上构建的流程运行器和监视器,使用瓶子和socketio作为Web界面:
https://github.com/mozilla-services/circus/blob/master/circus/web/circushttpd.py https://github.com/mozilla-services/circus/blob/master/circus/web/server.py
源代码非常简单,可以帮助您开始使用瓶子和socketio构建更大的应用程序。
否则,我建议你转到sockjs!这是一个更通用的实现,可以更好地支持不同的后端。
这个其他主题可以帮助你: SockJS or Socket.IO? Worth to recode ajax-based page?