我使用 Node JS 和 socket.io 构建了一个应用程序。它工作正常。由于我必须通过安全连接移动应用程序,因此我更改了代码以支持 SSL。
但是,现在我无法做一个socket.emit
. 服务器和客户端都无法发出消息。
连接成功,但之后没有发出任何内容。
这是代码。
服务器端
var fs = require( 'fs' );
var options = {
key: fs.readFileSync('/etc/httpd/conf.d/ssl/*.xyz.in.key'),
cert: fs.readFileSync('/etc/httpd/conf.d/ssl/xyz.in.crt'),
requestCert: true,
rejectUnauthorized: false // Tried both, with and without this line.
};
var io = require( 'socket.io' ).listen( 8888, options );
io.sockets.on('connection', OnConnection );
io.set("origins", "*:*"); // Tried with and without this line.
// Called when a connection is made with a new Client.
function OnConnection ( socket )
{
console.log( socket.id + " connected" ); // This line gets printed.
socket.on('ev_SendMsgForApproval', OnMsgReceivedForModApproval );
}
function OnMsgReceivedForModApproval( data )
{
console.log( data ); //This does not get executed. :(
}
客户端
var socket = io.connect("https://xyz.com:8888", {secure : true} );
// This message get called for sure.
function OnMsgSendClick()
{
console.log( "Hi" ); // This gets printed on browser's console.
socket.emit( 'ev_SendMsgForApproval', { chatMsg: "Hi" } );
return false;
}
我也尝试过从服务器发出,但该数据也没有到达客户端。在调试中,我可以看到服务器发出了一些东西,但没有到达客户端。
没有 SSL,这一切都可以正常工作。
可能是什么问题?长期以来一直坚持这一点。请帮忙。