是否可以从 ASP.NET 应用程序到 node.js 服务器进行通信?
首先,我只想能够看到连接。我认为这样的事情会起作用:
服务器(node.js):
var io = require('socket.io').listen(1234);
io.sockets.on('connection', function (socket)
{
console.log('connected');
socket.on('disconnect', function ()
{
console.log('disconnected');
});
});
客户端(ASP.NET):
var tcpClient = new System.Net.Sockets.TcpClient();
tcpClient.Connect("localhost", 1234);
System.Threading.Thread.Sleep(1000);
tcpClient.Close();
......但我没有太多的快乐。客户端根本没有抱怨,但我从未在 node.js 中看到“已连接”或“已断开连接”。
有没有人有这样的工作?