我有一个简单的eventmachine Web套接字服务器(eventmachine 1.0.0):
EM.run {
# WebSocket Server
EM::WebSocket.start(:host => "0.0.0.0", :port => 8080) do |ws|
ws.onopen do
sid = @channel.subscribe{|msg| ws.send msg }
puts "* new WebSocket client <#{sid}> connected!"
end
ws.onmessage do |msg|
puts "* websocket client <#{@sid}> : #{msg}"
end
ws.onclose do
@channel.unsubscribe(sid)
puts "* websocket client <#{@sid}> closed"
end
end
}
我正在尝试使用以下代码通过javascript客户端连接到它:
socket = new WebSocket("ws://localhost:8080");
socket.onopen = function(e) {
socket.send('Connesso');
};
socket.onmessage = function(mess) {
if (mess) {
socket.send(mess);
}
};
socket.onclose = function(e) {
socket.send('Disconnesso');
};
使用以前版本的safari,它与客户端未连接到服务器的最新版本完美配合。
我还试用了最后一个Chrome Dev稳定版,但它无法使用。
Web套接字标头已发送,但仍处于暂挂状态。
如果我向网络套接字发送短信,我会收到INVALID_STATE_ERR: DOM Exception 11
。
我看到有一个草案更改,但我认为em-websocket 0.3.8已经实现了它。
你能帮我解决这个问题吗?
非常感谢
答案 0 :(得分:0)
INVALID_STATE_ERR:DOM异常11表示您的websocket尚未处于就绪状态。
您可以通过socket.readyState检查websocket对象的状态 您可以在socket.readyState == 1
时发送消息我通过使用超时
为此创建了一个转机timerId = setInterval(sendDataWhenReady, 1000);
function sendDataWhenReady(){
if(socket.readyState == 1){
ws.send(JSON.stringify({"type": 'STATUS', "status": status, "username": logged_in_user}))
clearInterval(timerId);
}
}