【问题标题】:python tornado SSLEOFError: EOF occurred in violation of protocol (_ssl.c:581)python tornado SSLEOFError: EOF 发生违反协议 (_ssl.c:581)
【发布时间】:2015-05-16 18:16:27
【问题描述】:

我正在尝试使用 https 和安全 websockets (wss://) 运行聊天应用程序,但出现以下错误。我正在使用我创建的自签名证书。如果我从 chrome 桌面访问我的site,它就可以工作。如果我从 chrome ios 访问同一站点,我会收到以下错误消息。此外,从 chrome ios,我收到不受信任证书的警告并接受它。所以我想让它适用于 chrome ios。

[E 150516 14:01:56 http1connection:700] Uncaught exception
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/tornado/http1connection.py", line 691, in _server_request_loop
    ret = yield conn.read_response(request_delegate)
  File "/usr/local/lib/python2.7/dist-packages/tornado/gen.py", line 807, in run
    value = future.result()
  File "/usr/local/lib/python2.7/dist-packages/tornado/concurrent.py", line 209, in result
    raise_exc_info(self._exc_info)
  File "/usr/local/lib/python2.7/dist-packages/tornado/gen.py", line 810, in run
    yielded = self.gen.throw(*sys.exc_info())
  File "/usr/local/lib/python2.7/dist-packages/tornado/http1connection.py", line 166, in _read_message
    quiet_exceptions=iostream.StreamClosedError)
  File "/usr/local/lib/python2.7/dist-packages/tornado/gen.py", line 807, in run
    value = future.result()
  File "/usr/local/lib/python2.7/dist-packages/tornado/concurrent.py", line 209, in result
    raise_exc_info(self._exc_info)
  File "<string>", line 3, in raise_exc_info
SSLEOFError: EOF occurred in violation of protocol (_ssl.c:581)

这是我的代码

import tornado.ioloop
import tornado.web
import tornado.options
import tornado.httpserver
import os
import tornado.websocket

import ssl
ssl.PROTOCOL_SSLv23 = ssl.PROTOCOL_TLSv1

clients = []

class IndexHandler(tornado.web.RequestHandler):
  @tornado.web.asynchronous
  def get(request):
    request.render("index.html")

class WebSocketChatHandler(tornado.websocket.WebSocketHandler):
  def open(self, *args):
    print("open", "WebSocketChatHandler")
    clients.append(self)

  def on_message(self, message):        
    print message
    for client in clients:
        client.write_message(message)

  def on_close(self):
    clients.remove(self)

application = tornado.web.Application([(r'/wschat', WebSocketChatHandler), (r'/', IndexHandler)])

data_dir = '/home/bob'

#http_server = tornado.httpserver.HTTPServer(application)
http_server = tornado.httpserver.HTTPServer(application, ssl_options={
    "certfile": os.path.join(data_dir, "myselfsigned.cer"),
    "keyfile": os.path.join(data_dir, "myselfsigned.key"),
})

if __name__ == "__main__":
    tornado.options.parse_command_line()
    http_server.listen(443)
    tornado.ioloop.IOLoop.instance().start()

我正在运行 python 2.7.9 和 tornado 4.1。我怀疑我必须修补龙卷风,但我尝试了各种修补龙卷风的猴子,但都没有成功。有人可以帮我修补龙卷风,或提供有关如何解决此问题的详细步骤。另外,我是 SSL 新手,所以像我 5 岁一样向我解释它:)

非常感谢您的时间和耐心!

【问题讨论】:

    标签: python ios ssl websocket tornado


    【解决方案1】:

    根据https://blog.httpwatch.com/2013/12/12/five-tips-for-using-self-signed-ssl-certificates-with-ios/,要在iOS 上将自签名证书用于Safari 以外的应用程序(包括Chrome),您必须将证书安装为“配置文件”。

    服务器端记录的错误是无害的,在 Tornado 4.2 中不会被详细记录。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-12-15
      • 1970-01-01
      相关资源
      最近更新 更多