带有 Rails(Puma)的 Websockets - WebSocket 握手期间出错:意外的响应代码:200

Posted

技术标签:

【中文标题】带有 Rails(Puma)的 Websockets - WebSocket 握手期间出错:意外的响应代码:200【英文标题】:Websockets with Rails(Puma) - Error during WebSocket handshake: Unexpected response code: 200 【发布时间】:2015-08-15 22:36:12 【问题描述】:

我正在尝试在我的 Rails4.1 应用程序中使用 websocket

这里有一些相关的代码sn-ps:

宝石文件:

gem 'websocket-rails'
gem 'puma'

开发.rb

 config.middleware.delete Rack::Lock

我在本地启动服务器:

bundle exec puma -p 3000

在 chrome 控制台中我看到一个连接错误:

new WebSocketRails('localhost:3000/post/hello', true);

WebSocket connection to 'ws://localhost:3000/post/hello' failed: Error during WebSocket handshake: Unexpected response code: 200

谁能帮助我在 Rails 中本地使用 Web 套接字需要做些什么?


更新1

我尝试按照Websockets not working in my Rails app when I run on Unicorn server, but works on a Thin server 添加以下内容,但没有帮助

初始化程序/eventmachine.rb

Thread.new  EventMachine.run  unless EventMachine.reactor_running? && EventMachine.reactor_thread.alive

【问题讨论】:

投反对票的原因? 不是我的反对意见,但我建议不要删除“Rack::Lock”,除非你知道自己在做什么。 【参考方案1】:

在您的控制台中试试这个:

window.dispatcher = new WebSocketRails window.document.location.host + '/websocket'

您可以在 config/events.rb 文件中配置您想要执行的其余操作,以及用于处理事件的任何控制器

【讨论】:

这个。 Websocket-Rails gem 是hardcoded to use the '/websocket' route。

以上是关于带有 Rails(Puma)的 Websockets - WebSocket 握手期间出错:意外的响应代码:200的主要内容,如果未能解决你的问题,请参考以下文章

Heroku:Rails 5 WebSocket 连接失败

在带有 Puma 的 Rails 4 应用程序中使用 Web 套接字

运行 Puma 和 Nginx 的带有 AWS Elastic Beanstalk 的 Rails 应用程序 502

带有 Puma 和 Nginx 服务页面的 Elastic Beanstalk 上预编译资产的 Rails 4 应用程序以及旧资产链接

Rails 应用程序保持这么多空闲的 Puma 和 Postgres 连接是不是正常?

将 Rails + Puma + Postgres 应用程序部署到 Elastic beanstalk 的正确方法?