3

上周二,我尝试在wss://中启动服务器,但没有成功。今天决定看一下WebSocket代码,发现为什么我的WebSocket直接关闭了。这是我发现的错误代码:

1002 Unsupported usage of rsv bits without negotiated extension.
VALUE OF RSV1:Opcode: 7, fin: false, length: 69, hasPayload: true, masked: false

我的程序适用于ws://但不适用于wss://。我不明白为什么 TLS 被阻止。

我精确的 IPtables 已停止,我的证书还可以。

你有什么主意吗?

如果你想看,下面是我的代码:

var fs = require('fs');
var https = require('https');
var WebSocketServer = require('websocket').server;
var express = require('express');

var serverTLS = express.createServer({
    key: fs.readFileSync(__dirname + '/notification_mail/notification.mail.com.key'),
    cert: fs.readFileSync(__dirname + '/notification_mail/notification.mail.com.crt')
});

serverTLS.configure(function(){
    serverTLS.set('views',__dirname);
    serverTLS.set('view engine','ejs');
});

serverTLS.get('/',function(req,res){
    res.render('index',{layout: false });
});

serverTLS.listen("443");

var wss = new WebSocketServer({ httpServer: serverTLS, autoAcceptConnections: true });

wss.on('connect', function(connection) {
    console.log((new Date()) + " Connection accepted.");

    connection.on('close', function(connection) {
            console.log((new Date()) + " Disconnected");
    });
});

console.log("Server launch");

还有我的 HTML 文件

<html>
<head>
 <meta charset="utf-8">
 <title>Example</title>
</head>
<body>
<h1>Serveur 2</h1>
<div id="tchat"></div>
<script>
   var url = "wss://notification.mail.com";
   var wsCtor = window['MozWebSocket'] ? MozWebSocket : WebSocket;
   this.socket = new wsCtor(url, 'connect');

   this.socket.onclose = function(){
      alert ("Connection lost");
   }
</script>
</body>
</html>
4

2 回答 2

0

错误消息令人困惑,因为

你试过Chrome还是IE10?

您还可以尝试针对您的节点服务器运行AutobahnTestsuite 。

测试套件有一个支持 WSS 的 fuzzingclient 模式。测试套件包括大量的线路日志报告,这可能有助于找出发生了什么。

披露:我是 Autobahn 的原作者,为 Tavendo 工作。

于 2013-06-08T09:02:55.873 回答
-1

我启动了 wss://(但在 .NET 上),我也得到了 7 个操作码。我每 5 秒使用ReadTimeout( ReceiveTimeout) 向客户端发送“ping”。在 ws:// 和 wss:// 都运行良好,但在 wss:// 每 5 秒我得到“7 操作码”。

我删除了超时并且它起作用了。

于 2018-07-12T11:31:19.997 回答