Browse Source

增加网站监听端口

yinyujing 4 years ago
parent
commit
457e3c9cca

+ 2 - 0
NB_IOT_TCP_HP_SOCKET/App.config

@@ -26,6 +26,8 @@
     <add key="AutoStart" value="0" />
     <!--上报端口-->
     <add key="ReportPort" value="" />
+    <!--监听端口-->
+    <add key="MonitorPort" value="" />
   </appSettings>
   <startup>
     <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />

+ 40 - 4
NB_IOT_TCP_HP_SOCKET/MainForm_TCP.Designer.cs

@@ -56,10 +56,13 @@
             this.btnStart = new System.Windows.Forms.Button();
             this.splitContainer1 = new System.Windows.Forms.SplitContainer();
             this.panel1 = new System.Windows.Forms.Panel();
+            this.txtMonitorPort = new System.Windows.Forms.TextBox();
             this.button4 = new System.Windows.Forms.Button();
             this.button3 = new System.Windows.Forms.Button();
             this.timer1 = new System.Windows.Forms.Timer(this.components);
             this.splitContainer2 = new System.Windows.Forms.SplitContainer();
+            this.label1 = new System.Windows.Forms.Label();
+            this.label2 = new System.Windows.Forms.Label();
             this.contextMenuStrip1.SuspendLayout();
             this.groupBox3.SuspendLayout();
             this.statusStrip1.SuspendLayout();
@@ -264,16 +267,17 @@
             // 
             // txtPort
             // 
-            this.txtPort.Location = new System.Drawing.Point(93, 15);
+            this.txtPort.Location = new System.Drawing.Point(161, 15);
             this.txtPort.Name = "txtPort";
+            this.txtPort.ReadOnly = true;
             this.txtPort.Size = new System.Drawing.Size(40, 21);
             this.txtPort.TabIndex = 19;
-            this.txtPort.Text = "5555";
             // 
             // txtIpAddress
             // 
             this.txtIpAddress.Location = new System.Drawing.Point(10, 14);
             this.txtIpAddress.Name = "txtIpAddress";
+            this.txtIpAddress.ReadOnly = true;
             this.txtIpAddress.Size = new System.Drawing.Size(77, 21);
             this.txtIpAddress.TabIndex = 18;
             this.txtIpAddress.Text = "0.0.0.0";
@@ -328,6 +332,9 @@
             this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
             | System.Windows.Forms.AnchorStyles.Right)));
             this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+            this.panel1.Controls.Add(this.label2);
+            this.panel1.Controls.Add(this.label1);
+            this.panel1.Controls.Add(this.txtMonitorPort);
             this.panel1.Controls.Add(this.button4);
             this.panel1.Controls.Add(this.button3);
             this.panel1.Controls.Add(this.txtPort);
@@ -339,9 +346,17 @@
             this.panel1.Size = new System.Drawing.Size(776, 48);
             this.panel1.TabIndex = 6;
             // 
+            // txtMonitorPort
+            // 
+            this.txtMonitorPort.Location = new System.Drawing.Point(300, 15);
+            this.txtMonitorPort.Name = "txtMonitorPort";
+            this.txtMonitorPort.ReadOnly = true;
+            this.txtMonitorPort.Size = new System.Drawing.Size(40, 21);
+            this.txtMonitorPort.TabIndex = 25;
+            // 
             // button4
             // 
-            this.button4.Location = new System.Drawing.Point(283, 12);
+            this.button4.Location = new System.Drawing.Point(474, 12);
             this.button4.Name = "button4";
             this.button4.Size = new System.Drawing.Size(75, 23);
             this.button4.TabIndex = 24;
@@ -351,7 +366,7 @@
             // 
             // button3
             // 
-            this.button3.Location = new System.Drawing.Point(166, 12);
+            this.button3.Location = new System.Drawing.Point(362, 12);
             this.button3.Name = "button3";
             this.button3.Size = new System.Drawing.Size(75, 23);
             this.button3.TabIndex = 23;
@@ -385,6 +400,24 @@
             this.splitContainer2.SplitterDistance = 325;
             this.splitContainer2.TabIndex = 10;
             // 
+            // label1
+            // 
+            this.label1.AutoSize = true;
+            this.label1.Location = new System.Drawing.Point(105, 19);
+            this.label1.Name = "label1";
+            this.label1.Size = new System.Drawing.Size(53, 12);
+            this.label1.TabIndex = 26;
+            this.label1.Text = "上报端口";
+            // 
+            // label2
+            // 
+            this.label2.AutoSize = true;
+            this.label2.Location = new System.Drawing.Point(218, 19);
+            this.label2.Name = "label2";
+            this.label2.Size = new System.Drawing.Size(77, 12);
+            this.label2.TabIndex = 27;
+            this.label2.Text = "网站监听端口";
+            // 
             // MainForm_TCP
             // 
             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
@@ -453,5 +486,8 @@
         private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
         private System.Windows.Forms.ToolStripMenuItem 显示ToolStripMenuItem;
         private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
+        private System.Windows.Forms.TextBox txtMonitorPort;
+        private System.Windows.Forms.Label label2;
+        private System.Windows.Forms.Label label1;
     }
 }

+ 33 - 4
NB_IOT_TCP_HP_SOCKET/MainForm_TCP.cs

@@ -53,7 +53,8 @@ namespace NB_IOT_TCP_HP_SOCKET
         private string ruralWaterURL = ""; // 农村供水预付费系统接口 (http://xxxxx/RuralWater/MeterValveStatusApi.ashx)
 
 
-        public static TcpServer server = new TcpServer();
+        public static TcpServer server = new TcpServer();// 接收数据
+        public static TcpServer monitor = new TcpServer();// 监听
 
         private delegate void ShowMsg(string msg, ListBox lb);
         private ShowMsg AddMsgDelegate;
@@ -88,6 +89,7 @@ namespace NB_IOT_TCP_HP_SOCKET
                 SetAppState(AppState.UnStart);
 
                 this.txtPort.Text = ConfigurationManager.AppSettings["ReportPort"];
+                this.txtMonitorPort.Text = ConfigurationManager.AppSettings["MonitorPort"];
                 string AutoStart = ConfigurationManager.AppSettings["AutoStart"];
                 String ip = this.txtIpAddress.Text.Trim();
                 string port = this.txtPort.Text.Trim();
@@ -111,8 +113,11 @@ namespace NB_IOT_TCP_HP_SOCKET
         private void btnStart_Click(object sender, EventArgs e)
         {
             String ip = this.txtIpAddress.Text.Trim();
-            ushort port = ushort.Parse(this.txtPort.Text.Trim());
-            StartServer(ip, port);
+            string port = this.txtPort.Text.Trim();
+            if (!string.IsNullOrEmpty(ip) && !string.IsNullOrEmpty(port))
+            {
+                StartServer(ip, ushort.Parse(port));
+            }
         }
 
         private void StartServer(string ip, ushort port)
@@ -126,6 +131,20 @@ namespace NB_IOT_TCP_HP_SOCKET
                 // 启动服务
                 if (server.Start())
                 {
+                    string monitorPort = this.txtMonitorPort.Text.Trim();
+                    try
+                    {
+                        if (!string.IsNullOrEmpty(monitorPort))
+                        {
+                            monitor.IpAddress = ip;
+                            monitor.Port = ushort.Parse(monitorPort);
+                            monitor.Start();
+                        }
+                    }
+                    catch (Exception ex)
+                    {
+                        AddMsg("网站监听端口:【"+ monitorPort + "】,启动失败!" + ex.Message + ">>>" + ex.StackTrace, lbErrorData);
+                    }
                     SetAppState(AppState.Started);
                     AddMsg($" > Server Start OK -> ({ip}:{port}) 服务启动成功", lbReceiveData);
 
@@ -182,6 +201,15 @@ namespace NB_IOT_TCP_HP_SOCKET
             // 停止服务
             if (server.Stop())
             {
+                try
+                {
+                    monitor.Stop();// 停止监听端口
+                }
+                catch (Exception ex)
+                {
+                    AddMsg("网站监听端口停止失败!" + ex.Message + ">>>" + ex.StackTrace, lbErrorData);
+                }
+
                 AddMsg($" > Server Stop 服务停止成功", lbReceiveData);
                 // 设备类型 1:电池供电;2:市电供电MODBUS;3:电池供电和市电供电MODBUS
                 string deviceType = ConfigurationManager.AppSettings["IsHaveModBus"];
@@ -1497,9 +1525,10 @@ namespace NB_IOT_TCP_HP_SOCKET
             paramSetForm.ShowDialog();
         }
 
-        private void SetReportPort(string reportPort)
+        private void SetReportPort(string reportPort,string monitorPort)
         {
             this.txtPort.Text = reportPort;
+            this.txtMonitorPort.Text = monitorPort;
         }
 
         /// <summary>

+ 55 - 33
NB_IOT_TCP_HP_SOCKET/ParamSetForm.Designer.cs

@@ -29,6 +29,9 @@
         private void InitializeComponent()
         {
             this.groupBox1 = new System.Windows.Forms.GroupBox();
+            this.label9 = new System.Windows.Forms.Label();
+            this.ReportPort = new System.Windows.Forms.TextBox();
+            this.isAutoStart = new System.Windows.Forms.CheckBox();
             this.label4 = new System.Windows.Forms.Label();
             this.dataBase = new System.Windows.Forms.TextBox();
             this.label3 = new System.Windows.Forms.Label();
@@ -49,15 +52,16 @@
             this.connectionTimeOut = new System.Windows.Forms.TextBox();
             this.button1 = new System.Windows.Forms.Button();
             this.button2 = new System.Windows.Forms.Button();
-            this.isAutoStart = new System.Windows.Forms.CheckBox();
-            this.ReportPort = new System.Windows.Forms.TextBox();
-            this.label9 = new System.Windows.Forms.Label();
+            this.label10 = new System.Windows.Forms.Label();
+            this.MonitorPort = new System.Windows.Forms.TextBox();
             this.groupBox1.SuspendLayout();
             this.groupBox2.SuspendLayout();
             this.SuspendLayout();
             // 
             // groupBox1
             // 
+            this.groupBox1.Controls.Add(this.MonitorPort);
+            this.groupBox1.Controls.Add(this.label10);
             this.groupBox1.Controls.Add(this.label9);
             this.groupBox1.Controls.Add(this.ReportPort);
             this.groupBox1.Controls.Add(this.isAutoStart);
@@ -76,10 +80,36 @@
             this.groupBox1.TabStop = false;
             this.groupBox1.Text = "数据库配置";
             // 
+            // label9
+            // 
+            this.label9.AutoSize = true;
+            this.label9.Location = new System.Drawing.Point(18, 173);
+            this.label9.Name = "label9";
+            this.label9.Size = new System.Drawing.Size(77, 12);
+            this.label9.TabIndex = 12;
+            this.label9.Text = "数据上报端口";
+            // 
+            // ReportPort
+            // 
+            this.ReportPort.Location = new System.Drawing.Point(101, 169);
+            this.ReportPort.Name = "ReportPort";
+            this.ReportPort.Size = new System.Drawing.Size(100, 21);
+            this.ReportPort.TabIndex = 11;
+            // 
+            // isAutoStart
+            // 
+            this.isAutoStart.AutoSize = true;
+            this.isAutoStart.Location = new System.Drawing.Point(101, 242);
+            this.isAutoStart.Name = "isAutoStart";
+            this.isAutoStart.Size = new System.Drawing.Size(120, 16);
+            this.isAutoStart.TabIndex = 9;
+            this.isAutoStart.Text = "是否打开自动启动";
+            this.isAutoStart.UseVisualStyleBackColor = true;
+            // 
             // label4
             // 
             this.label4.AutoSize = true;
-            this.label4.Location = new System.Drawing.Point(26, 70);
+            this.label4.Location = new System.Drawing.Point(54, 62);
             this.label4.Name = "label4";
             this.label4.Size = new System.Drawing.Size(41, 12);
             this.label4.TabIndex = 7;
@@ -87,7 +117,7 @@
             // 
             // dataBase
             // 
-            this.dataBase.Location = new System.Drawing.Point(87, 67);
+            this.dataBase.Location = new System.Drawing.Point(101, 59);
             this.dataBase.Name = "dataBase";
             this.dataBase.Size = new System.Drawing.Size(172, 21);
             this.dataBase.TabIndex = 6;
@@ -95,7 +125,7 @@
             // label3
             // 
             this.label3.AutoSize = true;
-            this.label3.Location = new System.Drawing.Point(26, 156);
+            this.label3.Location = new System.Drawing.Point(66, 135);
             this.label3.Name = "label3";
             this.label3.Size = new System.Drawing.Size(29, 12);
             this.label3.TabIndex = 5;
@@ -103,7 +133,7 @@
             // 
             // passWord
             // 
-            this.passWord.Location = new System.Drawing.Point(87, 153);
+            this.passWord.Location = new System.Drawing.Point(101, 132);
             this.passWord.Name = "passWord";
             this.passWord.Size = new System.Drawing.Size(172, 21);
             this.passWord.TabIndex = 4;
@@ -111,7 +141,7 @@
             // label2
             // 
             this.label2.AutoSize = true;
-            this.label2.Location = new System.Drawing.Point(26, 114);
+            this.label2.Location = new System.Drawing.Point(54, 99);
             this.label2.Name = "label2";
             this.label2.Size = new System.Drawing.Size(41, 12);
             this.label2.TabIndex = 3;
@@ -119,7 +149,7 @@
             // 
             // userName
             // 
-            this.userName.Location = new System.Drawing.Point(87, 111);
+            this.userName.Location = new System.Drawing.Point(101, 96);
             this.userName.Name = "userName";
             this.userName.Size = new System.Drawing.Size(172, 21);
             this.userName.TabIndex = 2;
@@ -127,7 +157,7 @@
             // label1
             // 
             this.label1.AutoSize = true;
-            this.label1.Location = new System.Drawing.Point(26, 32);
+            this.label1.Location = new System.Drawing.Point(54, 27);
             this.label1.Name = "label1";
             this.label1.Size = new System.Drawing.Size(41, 12);
             this.label1.TabIndex = 1;
@@ -135,7 +165,7 @@
             // 
             // dataBaseIP
             // 
-            this.dataBaseIP.Location = new System.Drawing.Point(87, 29);
+            this.dataBaseIP.Location = new System.Drawing.Point(101, 24);
             this.dataBaseIP.Name = "dataBaseIP";
             this.dataBaseIP.Size = new System.Drawing.Size(172, 21);
             this.dataBaseIP.TabIndex = 0;
@@ -255,31 +285,21 @@
             this.button2.UseVisualStyleBackColor = true;
             this.button2.Click += new System.EventHandler(this.button2_Click);
             // 
-            // isAutoStart
-            // 
-            this.isAutoStart.AutoSize = true;
-            this.isAutoStart.Location = new System.Drawing.Point(87, 236);
-            this.isAutoStart.Name = "isAutoStart";
-            this.isAutoStart.Size = new System.Drawing.Size(120, 16);
-            this.isAutoStart.TabIndex = 9;
-            this.isAutoStart.Text = "是否打开自动启动";
-            this.isAutoStart.UseVisualStyleBackColor = true;
-            // 
-            // ReportPort
+            // label10
             // 
-            this.ReportPort.Location = new System.Drawing.Point(87, 191);
-            this.ReportPort.Name = "ReportPort";
-            this.ReportPort.Size = new System.Drawing.Size(100, 21);
-            this.ReportPort.TabIndex = 11;
+            this.label10.AutoSize = true;
+            this.label10.Location = new System.Drawing.Point(18, 209);
+            this.label10.Name = "label10";
+            this.label10.Size = new System.Drawing.Size(77, 12);
+            this.label10.TabIndex = 13;
+            this.label10.Text = "网站监听端口";
             // 
-            // label9
+            // MonitorPort
             // 
-            this.label9.AutoSize = true;
-            this.label9.Location = new System.Drawing.Point(28, 196);
-            this.label9.Name = "label9";
-            this.label9.Size = new System.Drawing.Size(53, 12);
-            this.label9.TabIndex = 12;
-            this.label9.Text = "上报端口";
+            this.MonitorPort.Location = new System.Drawing.Point(101, 206);
+            this.MonitorPort.Name = "MonitorPort";
+            this.MonitorPort.Size = new System.Drawing.Size(100, 21);
+            this.MonitorPort.TabIndex = 14;
             // 
             // ParamSetForm
             // 
@@ -329,5 +349,7 @@
         private System.Windows.Forms.CheckBox isAutoStart;
         private System.Windows.Forms.Label label9;
         private System.Windows.Forms.TextBox ReportPort;
+        private System.Windows.Forms.TextBox MonitorPort;
+        private System.Windows.Forms.Label label10;
     }
 }

+ 5 - 2
NB_IOT_TCP_HP_SOCKET/ParamSetForm.cs

@@ -16,7 +16,7 @@ namespace NB_IOT_TCP_HP_SOCKET
     {
         private delegate void ShowMessageInvoke(string Caption, string Message);
 
-        public delegate void SetReportPortEvent(string reportPort);
+        public delegate void SetReportPortEvent(string reportPort, string monitorPort);
         public event SetReportPortEvent SetReportPort;
         public ParamSetForm()
         {
@@ -30,6 +30,7 @@ namespace NB_IOT_TCP_HP_SOCKET
             cfg.AppSettings.Settings["ConnectionTimeOutInterval"].Value = (this.connectionTimeOutInterval.Text.Trim() == "" ? "0" : this.connectionTimeOutInterval.Text.Trim());
             cfg.AppSettings.Settings["AutoStart"].Value = (this.isAutoStart.Checked ? "1" : "0");
             cfg.AppSettings.Settings["ReportPort"].Value = (this.ReportPort.Text.Trim() == "" ? "" : this.ReportPort.Text.Trim());
+            cfg.AppSettings.Settings["MonitorPort"].Value = (this.MonitorPort.Text.Trim() == "" ? "" : this.MonitorPort.Text.Trim());
             string deviceType = "";
             if (this.isHaveModBus.Checked && this.isBatteryDevice.Checked)
             {
@@ -85,7 +86,7 @@ namespace NB_IOT_TCP_HP_SOCKET
             cfg.AppSettings.Settings["db"].Value = dbTmp.ToString();
             cfg.Save();
             ConfigurationManager.RefreshSection("appSettings");
-            SetReportPort(this.ReportPort.Text.Trim());
+            SetReportPort(this.ReportPort.Text.Trim(), this.MonitorPort.Text.Trim());
             this.ShowMessage("提示", "保存成功!");
             this.Close();
         }
@@ -99,6 +100,7 @@ namespace NB_IOT_TCP_HP_SOCKET
             string ModBusQueryInterval = ConfigurationManager.AppSettings["ModBusQueryInterval"]; // MODBUS轮询获取抄表数据时间毫秒
             string AutoStart = ConfigurationManager.AppSettings["AutoStart"]; // 自动启动标志1:自动启动;0:不自动启动
             string ReportPort = ConfigurationManager.AppSettings["ReportPort"]; // 上报端口
+            string MonitorPort = ConfigurationManager.AppSettings["MonitorPort"]; // 监听端口
 
             string[] dbParamArr = db.Split(';');
 
@@ -150,6 +152,7 @@ namespace NB_IOT_TCP_HP_SOCKET
                 this.isAutoStart.Checked = true;
             }
             this.ReportPort.Text = ReportPort;
+            this.MonitorPort.Text = MonitorPort;
         }
 
         private void button2_Click(object sender, EventArgs e)