我通过套接字连接到C#中的远程服务器并发送数据,断开连接时我尝试通过创建新套接字并重新初始化来重新建立连接。
当我通过拉出以太网电缆并在几分钟后重新连接它进行测试时,这对我有用,但偶尔(每隔几个小时可能)我连接时会得到两个例外中的一个,但无法重新连接......
System.Net.Sockets.SocketException:已建立的连接已被主机中的软件中止
.......
System.Net.Sockets.SocketException:远程主机
强行关闭现有连接
如果我重新启动应用程序,一切都工作正常,所以我很好奇为什么创建一个新的套接字不起作用。我错过了某个地方的初始化吗?有任何想法吗?我每次使用相同的方法进行连接:
public static bool OpenConnection(string siteName)
{
bool success;
IPEndPoint ip = new IPEndPoint(IPAddress.Parse(serverIp), Convert.ToInt16(serverRemotePort));
try
{
client = null;
client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
Console.WriteLine("Try to connect to the server ..." + ip.Address.ToString());
client.Connect(ip);
Console.WriteLine("Connection established");
//Send the nameSite first
string nameSite = EncryptString(siteName, pwd, initVector) + "*";
byte[] dataSite = new byte[100];
dataSite = Encoding.ASCII.GetBytes(nameSite);
client.Send(dataSite, dataSite.Length, SocketFlags.None);
Console.WriteLine("NameSite send");
success = true;
}
catch (SocketException e)
{
success = false;
Console.WriteLine("Unable to connect to the server : " + e.StackTrace);
}
return success;
}
我尝试在catch中重新连接如下,count随着while循环的每次迭代而递增。
if (count % 20 == 0)
{
try
{
if (OpenConnection(siteName))
connected = true;
EventLog.WriteEntry("Connection re-established.");
}
catch (SocketException socketEx)
{
Console.WriteLine("Reconnection failed. Storing data locally. \n\n " + socketEx);
EventLog.WriteEntry("Reconnection failed. Storing data locally. \n\n " + socketEx);
}
}
构造函数只是初始化IP和端口号。为什么某些类型的断开连接会阻止我在没有重启的情况下重新连接,有什么想法?
答案 0 :(得分:1)
你有没有在客户端上调用Dispose()进行清理?
在OpenConnection方法
中清空客户端之前,尝试添加对Dispose()的调用client.Dispose();
client = null;
在MSDN上查看Socket的文档后,Disconnect方法似乎也可以解决您的问题。但是,我不确定你的代码应该去哪里,因为问题显示了逻辑的一部分。