1

我正在为移动应用程序编写服务器,并选择使用 socket.io 将通知从服务器推送到应用程序,但我无法设置 socket.io

当前在 io.connect(server:port) 上发起了无穷无尽的握手流

debug - client authorized
info  - handshake authorized HXtC1UPzcsEzO8X7x2B1
debug - client authorized
info  - handshake authorized aE7hMGDpp5InO1UWx2B2
debug - client authorized
info  - handshake authorized GBx_3n-8Lvbuo4QJx2B3
debug - client authorized
info  - handshake authorized tOEl0F5wNlh4xkn1x2B4
debug - client authorized
info  - handshake authorized K55Oit22yN9JDWxhx2B5
debug - client authorized
...

我正在将 socket.io-titanium 用于应用程序的客户端,但我无法判断是哪一端导致了此连接问题。

客户:

var io = require('socket.io-titanium');
var socket = io.connect('http://myserver.com:3000');
socket.on('connect', function (data){
  Ti.API.log("socket.io connected");
});
socket.on('update', function (data){
  Ti.API.log(data);
});

服务器:

index = fs.readFileSync(__dirname + '/index.html');
var updates = http.createServer(function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end(index);
});

var io = require('socket.io').listen(updates);

var clients = {};

io.sockets.on('connection', function(socket) {
    console.log("Server Connection Event");
    socket.on('i am client', console.log);
});

io.set("polling duration", 10);
io.set("close timeout", 30);
updates.listen(3000, function(){
 console.log("Updates listening on port 3000");
 console.log("");
});

我在一个非常长的流(100+)中间收到了一次“服务器连接事件”

我相信握手的想法是每个用户只需要授权和建立一次连接,直到连接关闭。

任何帮助将不胜感激!

4

1 回答 1

3

您是在本地笔记本电脑上还是通过 Internet 进行测试?

如果它通过 Internet,则您的 socket.io 客户端可能会退回到旧的基于轮询的协议。例如,如果您的 ISP 碰巧运行 HTTP/1.0 代理,就会发生这种情况。这样的代理将拒绝 HTTP/1.1 中定义的连接升级,因此 Web 套接字将失败,您的客户端将回退到旧方法,例如长轮询等。

如果您在本地笔记本电脑上运行时遇到此问题,则可能是其他问题。您能否打开 Chrome,然后打开开发者工具 > 网络,然后选择 Web 套接字过滤器。现在导航到您的站点,看看您的 Web Socket 是否建立正确。

于 2013-11-14T08:32:07.803 回答