Socket.IO Node.JS连接事件未触发

时间:2016-09-09 15:40:43

标签: node.js socket.io web-application-firewall

我必须做一些非常愚蠢的,因为Node {J}和Socket.IO的http://socket.io/get-started/chat/上的教程(!)聊天示例对我不起作用。更具体地说,'连接'加载网页时,事件未触发。

这是完整的index.js:

var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);

app.get('/', function(req, res){
  res.sendFile(__dirname + '/index.html');
});

io.on('connection', function(socket){
  console.log('a user connected');
});

http.listen(3000, function(){
  console.log('1e listening on *:3000');
});

这是完整的index.html:

<!doctype html>
<html>
  <head>
    <title>1e Socket.IO chat</title>
    <style>
      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font: 13px Helvetica, Arial; }
      form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
      form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
      form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
      #messages { list-style-type: none; margin: 0; padding: 0; }
      #messages li { padding: 5px 10px; }
      #messages li:nth-child(odd) { background: #eee; }
    </style>
  </head>
  <body>
    <script src="/socket.io/socket.io.js"></script>
    <script>
      var socket = io.connect('http://X.YY.ZZZ.QQ:3000');
      socket.on('message', function(msg){
        console.log(msg);
        document.getElementById("message").innerHTML = msg;
      });
    </script>
    <ul id="messages"></ul>
    <form action="">
      <input id="m" autocomplete="off" /><button>Send</button>
    </form>
  </body>
</html>

防火墙信息

  • 在X.YY.ZZZ.QQ:3000上,我已经禁用了防火墙(是的,快速和 丑陋的临时黑客,以避免超时并让页面加载,直到我弄清楚如何正确设置iptables规则)通过service iptables stop
  • 在本地Windows机器上,我可以通过ssh轻松访问X.YY.ZZZ.QQ,并且Windows中也禁用了防火墙,所以我认为端口不应该是这里的问题

什么有用

  • 客户:我可以通过InternetExplorer访问X.YY.ZZZ.QQ:3000 显示带有发送按钮的聊天栏。
  • 我确定index.html是正在加载的文件,就像我一样 在每次更改时,逐步更改标题标记(&#34; 1e&#34;) html文件
  • 服务器:控制台输出显示*&#34; 1e在 .3000&#34; 上收听 通过命令./node index.js
  • 启动它
  • 我还会逐步更改版本(&#34; 1e&#34;)以确保 node.js文件是正确的

什么行不通

  • 我应该收到控制台消息&#39; 用户连接&#39;在(重新)加载 网页标签,但它没有触发。我给了一个断点 var socket = io.connect()行的HTML代码确实如此 执行该行,所以看起来正在加载socket.io

有错误代码吗?你如何解决Node.JS / Socket.IO问题?任何内部日志?我看了,但没有看到任何。

我很确定我忽略了一些非常原始的东西,但由于这种网络技术对我来说是新的(我主要是C / C ++家伙),我迷失了。有什么想法吗?

0 个答案:

没有答案