2

c# で TCP サーバーを実行しています。プログラムは実行され、新しいクライアントを保持しているようです (TcpClient client = this.tcpListener.AcceptTcpClient(); で停止します)。新しい接続を待っています。ただし、(netstat コマンドを使用して) ネットワークを確認すると、サーバーがリッスンしていません。これは、実行されていないことを意味します。私は別のポートでも試しましたが、テストにはポート 80 が適していると思います (他のポートでも試しましたが、どれも機能しませんでした)。私のコードで何が間違っていますか? OSがサーバーをブロックしている可能性がありますか?

namespace TCPServer
{
    class TestClass
    {
        static void Main(string[] args)
        {
            Server TCPServer = new Server();
            // Display the number of command line arguments:
            System.Console.WriteLine(args.Length);
        }
    }

    class Server
    {
        private TcpListener tcpListener;
        private Thread listenThread;

        public Server()
        {
            this.tcpListener = new TcpListener(IPAddress.Any, 80);
            this.listenThread = new Thread(new ThreadStart(ListenForClients));
            this.listenThread.Start();
            System.Console.WriteLine("Server started");
        }

        //starts the tcp listener and accept connections
        private void ListenForClients()
        {
            this.tcpListener.Start();
            System.Console.WriteLine("Listener started");

            while (true)
            {
                System.Console.WriteLine("Accepting Clients");
                //blocks until a client has connected to the server
                TcpClient client = this.tcpListener.AcceptTcpClient();
                System.Console.WriteLine("Client connected");

                //create a thread to handle communication 
                //with connected client
                Thread clientThread = new Thread(new ParameterizedThreadStart(HandleClientComm));
                clientThread.Start(client);
            }
        }

        //Read the data from the client
        private void HandleClientComm(object client)
        {
            TcpClient tcpClient = (TcpClient)client; //start the client
            NetworkStream clientStream = tcpClient.GetStream(); //get the stream of data for network access

            byte[] message = new byte[4096];
            int bytesRead;

            while (true) 
            {
                bytesRead = 0;

                try
                {
                    //blocks until a client sends a message
                    bytesRead = clientStream.Read(message, 0, 4096);
                }
                catch
                {
                    //a socket error has occured
                    break;
                }

                if (bytesRead == 0) //if we receive 0 bytes
                {
                    //the client has disconnected from the server 
                    break;
                }

                //message has successfully been received
                ASCIIEncoding encoder = new ASCIIEncoding();
                System.Diagnostics.Debug.WriteLine(encoder.GetString(message, 0, bytesRead));

                //Reply
                byte[] buffer = encoder.GetBytes("Hello Client!");
                clientStream.Write(buffer, 0, buffer.Length);
                clientStream.Flush();
            }

            tcpClient.Close();
        }

    }
}

更新: ファイアウォールの免除を受けるようにアプリを構成します。私はwindows7で実行しています。また、ポート 3000 を確認しましたが、そのポートでリッスンしているものはありません。netstat 出力を使用して、リッスンしているかどうかを判断します。

4

0 に答える 0