我正在尝试完成以下任务:一旦网站上批准了帖子,就会通知该网站上的人。
为了解决这个问题,我正在使用 Faye,并在我的方法批准的频道上发布。我的应用程序只有一个通道,非常简单的场景。无论如何,由于某种原因它不起作用。
我正在使用Rails 2.3.5、Faye 0.8.5、eventmachine 1.0.0.beta4(与 Faye 一起安装的那个)、rack 1.0.1和thin 1.3.1。我没有使用 Apache。
到目前为止,我所拥有的是:
faye.ru:(我运行它:rackup faye.ru -s thin -E production)
require 'faye'
faye_server = Faye::RackAdapter.new(:mount => '/faye', :timeout => 45)
run faye_server
应用程序.js:
var $j = jQuery.noConflict();
$j(function() {
var faye = new Faye.Client('http://0.0.0.0:9292/faye');
faye.subscribe("/messages/new", function(data) {
alert(data.text);
});
});
application.html.erb:
<%= javascript_include_tag 'http://0.0.0.0:9292/faye.js' %>
post_controller.rb:
def approve
@post.update_attribute(:approved, true)
message = {:post => @post}
uri = URI.parse("http://0.0.0.0:9292/faye")
Net::HTTP.post_form(uri, :message => message.to_json)
redirect_to(pending_posts_path)
end
堆栈跟踪是:
EOFError (end of file reached):
/usr/lib/ruby/1.8/net/protocol.rb:135:in `sysread'
/usr/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill'
/usr/lib/ruby/1.8/timeout.rb:62:in `timeout'
/usr/lib/ruby/1.8/timeout.rb:93:in `timeout'
/usr/lib/ruby/1.8/net/protocol.rb:134:in `rbuf_fill'
/usr/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
/usr/lib/ruby/1.8/net/protocol.rb:126:in `readline'
/usr/lib/ruby/1.8/net/http.rb:2024:in `read_status_line'
/usr/lib/ruby/1.8/net/http.rb:2013:in `read_new'
/usr/lib/ruby/1.8/net/http.rb:1050:in `request'
/usr/lib/ruby/1.8/net/http.rb:405:in `post_form'
/usr/lib/ruby/1.8/net/http.rb:543:in `start'
/usr/lib/ruby/1.8/net/http.rb:404:in `post_form'
app/controllers/posts_controller.rb:38:in `approve'
并且在瘦服务器上也会出现错误:
>> Thin web server (v1.3.1 codename Triple Espresso)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:9292, CTRL+C to stop
!! Unexpected error while processing request: undefined method `call' for nil:NilClass
据我了解,每次尝试在服务器上连接都会出现这个错误,关键是“http://0.0.0.0:9292/faye.js”不可用,即如果我尝试访问这个 URL,我收到“ !!处理请求时出现意外错误:未定义的方法 `call' for nil:NilClass ”,这与 Net:HTTP 无法访问它的原因相同。我想知道为什么。