我有两个应用程序在不同网络上的不同计算机上运行。我正在尝试在这些应用程序之间创建TCP / IP连接。
当它们在同一台计算机(localhost)上运行时,连接完成。我正在使用Port 13002,直到现在我已经完成了以下任务。
我查找了服务器的公共IP,并使用下面的代码片段从客户端发出请求。 Int32端口= 13002; TcpClient client = new TcpClient(" xx.xx.xx.xxx",port);
我使用下面的代码段在服务器上收听。 IPAddress ipAddress = IPAddress.Any; TcpListener listener = new TcpListener(ipAddress,13002);
谢谢。