简体   繁体   English

带有确认的TCP IP服务器并再次接收数据

[英]TCP IP Server with acknowledgement and receive data again

I have developed TCP/IP Server in C# listening on port and a GPS device is sending the data to server. 我已经开发了使用C#侦听端口的TCP / IP服务器,并且GPS设备正在将数据发送到服务器。

Initially, the device sends the IMEI number to server and server acknowledges with 01. After receiving the acknowledgement by device, a new packet of data is sent to server. 最初,设备将IMEI编号发送到服务器,服务器以01进行确认。在收到设备的确认后,新的数据包将发送到服务器。

I am able to get IMEI number by TCP Server and after sending acknowledgement, i am not able to receive new packet data from client. 我能够通过TCP服务器获取IMEI号,并且在发送确认后,我无法从客户端接收新的数据包数据。 I am including my code below also. 我也在下面包含我的代码。 Please let me know where i am wrong. 请让我知道我错了。

I have tested using hercules tcp server tool and next data packet is receiving successfully but from my application it is not working. 我已经使用Hercules tcp服务器工具进行了测试,下一个数据包已成功接收,但是从我的应用程序无法正常工作。

           try
        {
            IPAddress ipAdress = IPAddress.Parse(ConfigurationManager.AppSettings["Server"].ToString());
            // You can use local IP as far as you use the 
            //same in client

            // Initializes the Listener
            TcpListener myList = new TcpListener(ipAdress, int.Parse(ConfigurationManager.AppSettings["Port"].ToString()));

            for (; ; )
            { // Run forever, accepting and servicing connections
                //Start Listeneting at the specified port

                myList.Start();

                Console.WriteLine("Server running - Port: 8000");
                Console.WriteLine("Local end point:" + myList.LocalEndpoint);
                Console.WriteLine("Waiting for connections...");

                Socket socket = myList.AcceptSocket();
                // When accepted
                Console.WriteLine("Connection accepted from " + socket.RemoteEndPoint);

                byte[] b = new byte[1000];
                int k = socket.Receive(b);


                Console.WriteLine("echoed {0} bytes.", k);
                Console.WriteLine("Reading IMEI....");

                string hexStr = ConvertAsciiToHex(Encoding.ASCII.GetString(b, 0, b.Length));
                File.WriteAllText(@"C:\ClientFiles\testIMEI", hexStr);


                ASCIIEncoding asen = new ASCIIEncoding();
                string response = "01";
                Console.WriteLine("Ackowledgement Data - " + response);
                //
                int sentBytes = socket.Send(asen.GetBytes(response));
                Console.WriteLine("Acknowledgement data sent!\n");

                int count = 0;

                while (socket.Poll(-1, SelectMode.SelectRead))
                {
                    b = new byte[1000];
                    k = socket.Receive(b);
                    if (k > 0)
                    {
                        count++;
                        Console.WriteLine("Reading Client Data - Count - " + count.ToString() + " and lenght " + k.ToString());
                        hexStr = ConvertAsciiToHex(Encoding.ASCII.GetString(b, 0, b.Length));
                        File.WriteAllText(@"C:\ClientFiles\testData" + count.ToString(), hexStr);
                    }
                }

                socket.Shutdown(SocketShutdown.Both);
                socket.Close();
            }


            myList.Stop();
        }
        catch (Exception ex)
        {
            File.WriteAllText(@"C:\ClientFiles\Error.txt", ex.Message + "****" + ex.InnerException);
        }

I don't see any error in the program, except these comments: 除了这些注释,我看不到程序中的任何错误:

 // Don't use the b.Length in this command:
 string hexStr = ConvertAsciiToHex(Encoding.ASCII.GetString(b, 0, b.Length));
 // use k instead, the numbers actually read, not the length of the buffer.
 string hexStr = ConvertAsciiToHex(Encoding.ASCII.GetString(b, 0, k)); 

 while (socket.Poll(-1, SelectMode.SelectRead))
 {
     // b has been allocated, don't need this
     // b = new byte[1000];
     k = socket.Receive(b);
     if (k > 0)
     {
         count++;
         Console.WriteLine("Reading Client Data - Count - " + count.ToString() + " and lenght " + k.ToString();
        // use k not Length
        hexStr = ConvertAsciiToHex(Encoding.ASCII.GetString(b, 0, k /*b.Length*/));
        File.WriteAllText(@"C:\ClientFiles\testData" + count.ToString(), hexStr);
     }
}

Do you know if the Poll command ever returns? 您知道“轮询”命令是否返回过吗? May be it raises an error and you are missing that one. 可能是它引发了一个错误,而您却错过了那个错误。 Check it out. 看看这个。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM