web-dev-qa-db-ja.com

通常、各ソケットアドレス(プロトコル/ネットワークアドレス/ポート)の使用は1つだけですか?

私はグーグルで深刻な解決策を探していましたが、「Regisrty solutions」のようなものしか得られません。

何らかの理由でこのエラーが発生しますが、TcpListnerを一度だけ起動しているときに、失敗した場合はサーバーを停止します。本当に分かりません。ここに私のコードがあります:

class Program
    {
        private static string ServerName = "";
        private static string UserName = "";
        private static string Password = "";
        private static string dbConnectionSring = "";
        private static X509Certificate adminCertificate;
        private  static byte[] readBuffer = new byte[4096];
        static void Main(string[] args)
        {
            Console.WriteLine("Please grant SQL Server access to the Admin Server:\n");
            Console.Write("Server Name: ");
            ServerName = Console.ReadLine();
            Console.Write("\nUser Name: ");
            UserName = Console.ReadLine();
            Console.Write("\nPassword: ");
            Password = PasswordMasker.Mask(Password);
            dbConnectionSring = SQLServerAccess.CreateConnection(ServerName, UserName, Password);
            adminCertificate = Certificate.GenerateOrImportCertificate("AdminCert.pfx", "randomPassword");
            try
            {
                Console.WriteLine("Initializing server on the WildCard address on port 443...");
                TcpListener listener = new TcpListener(IPAddress.Any, 443);
                try
                {
                    Console.WriteLine("Starting to listen at {0}: 443...", IPAddress.Any);

                    //the backlog is set to the maximum integer value, but the underlying network stack will reset this value to its internal maximum value
                    listener.Start(int.MaxValue);
                    Console.WriteLine("Listening... Waiting for a client to connect...");
                    int ConnectionCount = 0;

                    while (true)
                    {
                        try
                        {

                            listener.BeginAcceptTcpClient(new AsyncCallback(AcceptCallback), listener);
                            ConnectionCount++;
                            Console.WriteLine(
                                " Accepted connection #" + ConnectionCount.ToString());


                        }
                        catch (SocketException err)
                        {
                            Console.WriteLine("Accept failed: {0}", err.Message);
                        }
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Listening failed to start.");
                    listener.Stop();

                    Console.WriteLine(ex.Message);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Initialiazing server Failed.");
                Console.WriteLine(ex.Message);
            }
        }

あなたの助けに本当に感謝します!

7
WeinForce
  1. 私はCMDを開いて入力しました:netstat -a
  2. [ローカルアドレス]列を確認しました。
  3. ポート部分を見てみました。
  4. 私のプログラムのポートは、別のプログラムですでにアクティブ(使用中)であることがわかりました。
  5. プログラムのポートを別のものに変更しました。

    出来た!

    おかげで:@ DavidSchwartz、@ Gusman

14
WeinForce
  1. Cmdを開く
  2. タイプnetstat –ano
  3. ポートを含むプロセスのリストが開きます
  4. 使用できないポートの「プロセスID」を検索します(私の場合、ポート11020)
  5. タスクマネージャーを開き、そのプロセスを停止します
  6. これでポートの使用準備が整いました:)
5
harpreet singh