C#中的Tcp套接字服务器

7
我在互联网上找到了这段代码:它没有打开一个监听端口为11000的服务器,这是我所希望的。
问题可能出在哪里呢?我通常使用Delphi编码,所以有点迷失。我已经制作了一个相应的Delphi客户端,它可以正常运行。
我正在使用C# 2015的演示版本。
    public static void StartListening()
    {
        // Data buffer for incoming data.
        byte[] bytes = new Byte[1024];

        // Establish the local endpoint for the socket.
        // Dns.GetHostName returns the name of the 
        // host running the application.
        IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName());
        IPAddress ipAddress = ipHostInfo.AddressList[0];
        IPEndPoint localEndPoint = new IPEndPoint(ipAddress, 11000);

        // Create a TCP/IP socket.
        Socket listener = new Socket(AddressFamily.InterNetwork,
            SocketType.Stream, ProtocolType.Tcp);

        // Bind the socket to the local endpoint and 
        // listen for incoming connections.
        try
        {
            listener.Bind(localEndPoint);
            listener.Listen(10);

            // Start listening for connections.
            while (true)
            {
                //Console.WriteLine("Waiting for a connection...");
                // Program is suspended while waiting for an incoming connection.
                Socket handler = listener.Accept();
                data = null;

                // An incoming connection needs to be processed.
                while (true)
                {
                    bytes = new byte[1024];
                    int bytesRec = handler.Receive(bytes);
                    data += Encoding.ASCII.GetString(bytes, 0, bytesRec);
                    if (data.IndexOf("#") > -1)
                    {
                        break;
                    }
                }

                // Show the data on the console.
                //Console.WriteLine("Text received : {0}", data);

                // Echo the data back to the client.
                byte[] msg = Encoding.ASCII.GetBytes(data);

                handler.Send(msg);
                handler.Shutdown(SocketShutdown.Both);
                handler.Close();
            }

        }
        catch (Exception e)
        {
            Console.WriteLine(e.ToString());
        }

        //Console.WriteLine("\nPress ENTER to continue...");
        //Console.Read();

    }

bind 的异常是什么? - Prabhu
非常感谢。绑定时不允许任何例外。 - user2964812
3个回答

9

问题可能出在这里:ipHostInfo.AddressList[0] 的IP地址是什么?它可能是回环地址。除非必要,我从不限制服务器端点的IP地址,但是如果需要,我会在配置文件中指定。

IPEndPoint localEndPoint = new IPEndPoint(IPAddress.Any, 11000);

3
没问题,我会尽力。非常感谢,这正是问题所在。 - user2964812

1
根据Jeroen的回答,在.NET的同步服务器套接字示例中遇到。当监听/连接本地主机时,应使用
IPAddress ipAddress = IPAddress.Parse("127.0.0.1");

替代

// Establish the local endpoint for the socket.  
// Dns.GetHostName returns the name of the   
// host running the application.  
IPHostEntry ipHostInfo = Dns.GetHostEntry(Dns.GetHostName());  
IPAddress ipAddress = ipHostInfo.AddressList[0];

0

感谢您的反馈。我找到了一些其他的、更早期的代码:

TcpListener serverSocket = new TcpListener(11000);

这个可以完成任务。我知道它已经过时了,但实际上它还是能用的。


1
如果你查看一下代码,就会发现它与@Jeroen在他的答案中提到的完全相同。所以你应该至少点赞他的回答和/或接受他的回答。 - Oliver

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接