I am not able to connect GT06 Device to my Server No response private static void Main(string[] args) { try { IPAddress ipAd = IPAddress.Parse("MYIP"); TcpListener myList = new TcpListener(ipAd, 8821); myList.Start(); Console.WriteLine("The server is running at port..."); Console.WriteLine("The local End point is :" + myList.LocalEndpoint); while (true) { Console.WriteLine("Waiting for a connection....."); Socket s = myList.AcceptSocket(); Console.WriteLine("Connection accepted from " + s.RemoteEndPoint);...