Socket server stops accepting connections after a period of time

Posted by Rob on Stack Overflow See other posts from Stack Overflow or by Rob
Published on 2010-05-16T13:28:24Z Indexed on 2010/05/16 13:30 UTC
Read the original article Hit count: 306

Filed under:
|
|

We have an async socket server written in C#. (running on Windows Web Server 2008)

It works flawlessly up until it stop accepting new connections for an unknown reason.

We have about 200 concurrent connections on average, however we keep a count of both connections created and connections dropped. These figures can reach as high as 10,000 or as low as only 1000 before it just stops! It can run for up to around 8 hours sometimes before it stops or it can run for about half hour, at the moment it's running for about an hour before we have another application bring it back up automatically when that can't connect (not exactly ideal).

It doesn't appear like we're running out of sockets as we're closing them properly, we're also logging all errors and nothing is happening immediately before it stops.

We can figure this out. Does anyone have any ideas what might be going on?

I can paste code, but it generally just the same old async beginaccept/send code you see everywhere.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#