I have an issue where, depending on the startup order of two network devices, I seem to lose the ability to receive data on one end.
The setup is one small server written in C# (.NET 4.0) that listens to a specific port for data coming from an industrial scanner, communicating over TCP. The scanner connects to the server application just fine, and will send small chunks of data (serial numbers) which the server receives and processes. However, restarting (actually, cycling power, doesn't gracefully close its connection) on the scanner causes the server to stop processing data. The order of events, as well as the crucial network traffic that causes problems goes as follows:
SUCCESS FAILURE
|----------------------| |----------------------|
| SCANNER | SERVER | | SCANNER | SERVER |
|----------------------| |----------------------|
| | Starts | | Starts | |
| Starts | | | | Starts |
| Scan | Received | | Scan | Received |
| Restarts | | | Restarts | |
--------(Network)------- --------(Network)-------
| SYN | | | SYN | |
| | ACK-123 | | | SYN ACK |
| RST - 123 | | | ACK | |
| SYN | | | | |
| | SYN ACK | | | |
| ACK | | | | |
|----------------------| |----------------------|
| Scan | Received | | Scan | !LOST! |
|----------------------| |----------------------|
As you can see, in the SUCCESS scenario, after the scanner restart, the server responds to the SYN with an ACK, and the scanner resets the connection because it realizes it is not in the right stream. The server detects this and gracefully handles it. However, in the FAILURE scenario, the server blissfully responds with a SYN ACK, scanner ACKs, and a new connection is established.
The code doesn't complain about anything, but then my TcpLister/TcpClient never seems to receive any more data, even when it is received and ACKed as seen in Wireshark. Seemingly the TcpListener and handler are still waiting on the old connection for data? I'm new to this level network programming (and relatively new to C# itself), so definitely point out if I'm missing something obvious.
Code snippet of the server:
public void Run()
{
while (!shutdown)
{
shutdown = false; // Reset
listenerServer = new TcpListener(IPAddress.Any, scanner.Address.Port);
try
{
listenerServer.Start();
TcpClient handler = listenerServer.AcceptTcpClient();
while (true)
{
try
{
incomingData = null;
dataBuffer = new Byte[256];
NetworkStream stream = handler.GetStream(); // blocks here
int i;
while ((i = stream.Read(dataBuffer, 0, dataBuffer.Length)) != 0)
{
incomingData += Encoding.ASCII.GetString(dataBuffer, 0, i);
int startIndex = incomingData.IndexOf(startMarker);
int endIndex = incomingData.IndexOf(endMarker);
if (startIndex > -1 && endIndex > -1)
{
string serialData = incomingData.Substring(startIndex + 1, endIndex - startIndex - 1);
scanner.ProcessDataChange(serialData);
}
}
}
catch (IOException e)
{
// Deals with SocketExceptions here...
}
finally
{
handler.Close();
}
}
}
catch (SocketException e)
{
listenerServer.Stop();
listenerServer = null;
}
finally
{
listenerServer.Stop();
listenerServer = null;
}
}
}