具有IO异常的C#TCP / IP客户端

时间:2009-11-27 10:00:50

标签: c# exception client io tcp

IO异常:“无法从传输连接读取数据:已建立的连接已被主机中的软件中止。”

代码已经从教程中复制过来,我确信这个错误与我自己的机器有关。我的所有防火墙,ESET和Windows都关闭了。客户端通过端口55555连接。

编辑:

客户端

    static void Main(string[] args)
    {
        MakeClientCallToServer("test");
        MakeClientCallToServer("test2");
        MakeClientCallToServer("test3");

        // Now send a bunch of messages...
        string msg;
        for (int i = 0; i < 100; i++)
        {
            msg = string.Format(Thread.CurrentThread.CurrentCulture,
            "I'll not be ignored! (round {0})", i);
            ThreadPool.QueueUserWorkItem(new
            WaitCallback(MakeClientCallToServer), msg);
        }
        Console.WriteLine("\n Press any key to continue... ");
        Console.Read();
    }
    static void MakeClientCallToServer(object objMsg)
    {
        string msg = (string)objMsg;
        MyTcpClient client = new MyTcpClient(IPAddress.Loopback, 55555);
        client.ConnectToServer(msg);
    }

服务器

    static MyTcpServer server;

    static void Main(string[] args)
    {
        ThreadPool.QueueUserWorkItem(RunServer);
        Console.WriteLine("Press esc to stop the server...");
        ConsoleKeyInfo cki;
        while (true)
        {
            cki = Console.ReadKey();
            if (cki.Key == ConsoleKey.Escape)
            {
                break;
            }
        }
    }

    static void RunServer(object stateInfo)
    {
        //Initiate the server)
        server = new MyTcpServer(IPAddress.Loopback, 55555);
        server.Listen();
    }

我已经创建了名为MyTcpServer和MyTcpClient的类来处理所有常见的连接,线程等。

2 个答案:

答案 0 :(得分:0)

您可以尝试使用Wireshark捕获数据流以查看发生的情况。

答案 1 :(得分:0)

我们可以看到一些代码吗?

你是对的,这个错误的最常见原因是你的机器上出现了阻塞,因此关闭所有这些东西是一个很好的第一步。既然它仍在发生,你可以加载Wireshark以查看你的数据包发生了什么吗?