我有一个使用 socket.io 的简单 node.js 服务器来监听消息。我正在从 Perl 脚本向服务器发送消息 - 服务器似乎正在接收消息,但无法识别消息的“通道”。如何正确构造要从 Perl 脚本发送的 node.js/socket.io 消息?
这是我的 node.js 服务器:
var express = require('express');
var app = express.createServer();
var io = require('socket.io').listen(app);
app.listen(3000);
io.sockets.on('connection', function (socket) {
console.log("In connection");
socket.on('testevent', function (data) {
console.log("In testevent");
console.log(data);
});
});
这是我发送消息的 Perl 脚本的一部分:
#$clientID is set to 1598760311220985572 earlier... obtained from a handshake
$uri = "http://192.168.3.13:3000/socket.io/1/xhr-polling/$clientID";
$message = "5:::{'name':'testevent','args':['hello!']}";
$request = HTTP::Request->new( 'POST', $uri );
$request->content( $message );
print $response = $browser->request( $request )->as_string;
从 Perl 脚本收到消息后的服务器日志:
info - handshake authorized 1598760311220985572
debug - client authorized for
In connection
debug - xhr-polling received data packet 5:::{'name':'testevent','args':['hello!']}
因此,node.js 服务器似乎正在接收消息,但无法识别通道“testevent”,因为如果它正确解释消息,我希望服务器记录字符串“In testevent”。
我是否在 Perl 中正确格式化了我的消息,或者我的服务器代码是错误的?