我们有一个C ++ v100应用程序,它正在处理系统中的每个事件,监听端口1705,运行主机名。 (它非常适合C ++应用程序,并且我们不想更改c ++代码中的任何内容)我们试图将某些事件拦截到C#4.5.2解决方案中,只是为了在新的Web系统中显示特定事件
我已经编写了以下代码,试图监听端口1705的流量...但是我从未收到任何数据。 (我可以创建发送到1705的事件)
下面的代码运行,并且使其变为“等待连接”,但从未使其变为“已连接!”。如果您在以下代码中看到我为什么不接收数据的任何原因,请告诉我:
private void PortListener()
{
TcpListener server = null;
try
{
// Set the TcpListener on port 13000.
var port = 1705;
var localAddr = IPAddress.Parse(Dns.GetHostAddresses(Environment.MachineName)[0].ToString());
server = new TcpListener(localAddr, port);
// Start listening for client requests.
server.Start();
// Buffer for reading data
var bytes = new byte[256];
// Enter the listening loop.
while (true)
{
Console.Write("Waiting for a connection... ");
// Perform a blocking call to accept requests.
// You could also user server.AcceptSocket() here.
var client = server.AcceptTcpClient();
Console.WriteLine("Connected!");
// Get a stream object for reading and writing
var stream = client.GetStream();
int i;
// Loop to receive all the data sent by the client.
while ((i = stream.Read(bytes, 0, bytes.Length)) != 0)
{
// Translate data bytes to a ASCII string.
var data = System.Text.Encoding.ASCII.GetString(bytes, 0, i);
Console.WriteLine("Received: {0}", data);
// Process the data sent by the client.
data = data.ToUpper();
//TODO: Process the data
}
// Shutdown and end connection
client.Close();
}
}
catch (SocketException e)
{
Console.WriteLine("SocketException: {0}", e);
}
finally
{
// Stop listening for new clients.
server?.Stop();
}
}
答案 0 :(得分:0)
确保您绑定/侦听了正确的IP地址。如果在本地主机(127.0.0.1)上绑定/监听,则只能从同一主机进行连接。
检查什么
Dns.GetHostAddresses(Environment.MachineName)[0].ToString());
真正产生。
答案 1 :(得分:0)
我做错了。为了侦听已经打开的端口,我需要使用TcpClient进行连接和侦听。每个端口仅允许一个TcpListener。几个TcpClient可以一次连接。叹气。