473,386 Members | 1,644 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Detecting socket closed on TcpClient

Hi,

I have a project using the TcpClient and its associated NetworkStream.
Everything works well except for one condition which I haven't found any
information about dealing with:

How do I detected when the socket connection was closed on the
server-side?

That is, if my client connects to the server and everything is initialized
correctly the system runs well. But how can I tell if the server is shut
down or otherwise closes my connection without my involvement (that is
without my calling close on the TcpClient)?

Thanks,
Michael

Michael Kennedy
United Binary
http://www.unittesting.com
Jul 19 '05 #1
6 18436
Hello,

Thanks for the response. I was afraid that that was the case. I am using
try/catches to catch the errors but I would like to be able to let the user
know if the connection was closed by the server.

I know this can be done using straight winsock / Win32 API sockets and C++.
Is there an equivalent in .NET? Can this functionality be accessed using
some sort of interop along side the TcpClient (short of just using the C++
sockets via interop of course).

Thanks,
Michael

"Tian Min Huang" <ti******@online.microsoft.com> wrote in message
news:cD**************@cpmsftngxa06.phx.gbl...
Hello Michael,

Thanks for your post.
But how can I tell if the server is shutdown or otherwise closes my
connection without my involvement?

I suggest you to use try-catch statement to catch the exceptions thrown
from tcp operations. Generally speaking, the client side will not be
notified when the connection was damanged on the server-side until it

fails to communicate with the service. For example, when the connection is
somehow not available, it will throw the following exception if you call
NetworkStream::Write or NetworkStream::Read on client side:

Unhandled Exception: System.IO.IOException: Unable to read data from the
transport connection. ---> System.Net.Sockets.SocketException: An existing
connection was forcibly closed by the remote host

Hope this helps.

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.

Jul 19 '05 #2
On my solution I send some sort of 'bye' message to the client telling it the connection is being dropped, and I do so from the server with no expectation of response. The client is coded such that receiveing that from the server is the end of things. Your server connection is dropped for only a few reasons, one of which you can't control inside your program (ISP/connectivity failure), the rest should be app errors that you should be able to trap and kick out your bye messages as the server does it's finishing work. The key is making sure the server can't by any means abruptly halt, but must terminate gracefully, and telling all the clients is part of that. Even so, the client must be insulated from connectivity failings because certainly the clients are much more likely to have them than the server (i.e. dialup drop) which is no different to the client than the server hanging up - the read/write fails and client must deal with it.

Chris Langsenkamp
Chat Live at http://www.cleverchat.net
--------------------------------------------------------------------------------

"Michael Kennedy [UB]" <mk******@REMOVETHIS.unitedbinary.com> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello,

Thanks for the response. I was afraid that that was the case. I am using
try/catches to catch the errors but I would like to be able to let the user
know if the connection was closed by the server.

I know this can be done using straight winsock / Win32 API sockets and C++.
Is there an equivalent in .NET? Can this functionality be accessed using
some sort of interop along side the TcpClient (short of just using the C++
sockets via interop of course).

Thanks,
Michael

"Tian Min Huang" <ti******@online.microsoft.com> wrote in message
news:cD**************@cpmsftngxa06.phx.gbl...
Hello Michael,

Thanks for your post.
But how can I tell if the server is shutdown or otherwise closes my
connection without my involvement?

I suggest you to use try-catch statement to catch the exceptions thrown
from tcp operations. Generally speaking, the client side will not be
notified when the connection was damanged on the server-side until it

fails to communicate with the service. For example, when the connection is
somehow not available, it will throw the following exception if you call
NetworkStream::Write or NetworkStream::Read on client side:

Unhandled Exception: System.IO.IOException: Unable to read data from the
transport connection. ---> System.Net.Sockets.SocketException: An existing
connection was forcibly closed by the remote host

Hope this helps.

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.

Jul 19 '05 #3
Hi,

Thanks for the info. I know about interporating with the API using PInvoke.
But what I was asking for was a .NET way of acheiving the same
functionality. This limitation is not important enough for me to build whole
wrapper classes for the winsock API.

Also, I do catch the exceptions and they do contain the information about
the socket being closed. However, what I need is some way to determine if
the socket has been closed without traffic to the server. Consider that the
client connects to the server and everything is good. Sits there idle for
awhile, then the server is shutdown. Now the client will sit there for an
indefinite period of time (until it tries to talk again) before it knows the
server is gone.

Our C++ apps which use the Win32 API are notified immediately when the
server is shutdown. I was asking if there is the same functionality in the
..NET sockets. I guess the answer is no.

Thanks again,
Michael
"Tian Min Huang" <ti******@online.microsoft.com> wrote in message
news:Ko**************@cpmsftngxa06.phx.gbl...
Hello Michael,

Thanks for your reply. I'd like to share the following information with you:
1. According to the SocketException, it's clearly indicate that the
connection was closed by the server.
"System.Net.Sockets.SocketException: An existing connection was forcibly
closed by the remote host"

2. You can also call winsock APIs directly by using Platform Invoke. Please refer to the following MSDN article:

Consuming Unmanaged DLL Functions
http://msdn.microsoft.com/library/de...us/cpguide/htm l/cpconconsumingunmanageddllfunctions.asp

Hope this helps.

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.

Jul 19 '05 #4
Hi Michael,

Thanks for your response. I am now performing further research on this
issue, and will come back with my information.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.
Jul 19 '05 #5
Hello Michael,

Now I'd like to share the following information with you. Generally
speaking, we should set the SO_KEEPALIVE option (by using setsockopt) to
monitor the connection. Please refer to the following KB article:

How to Determine Loss of Client/Server Connection
http://support.microsoft.com/default...b;en-us;140325

In .NET Framework, please refer to the corresponding KeepAlive option:

SocketOptionName Enumeration
http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfsystemnetsocketssocketoptionnameclasstopic.as p

Please feel free to let me know if you have any problems or concerns.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.
Jul 19 '05 #6
Hi,

Thanks for the response. That does look like it might be helpful to me. I'll
let you know how it goes.

Thanks,
Michael
"Tian Min Huang" <ti******@online.microsoft.com> wrote in message
news:FO**************@cpmsftngxa06.phx.gbl...
Hello Michael,

Now I'd like to share the following information with you. Generally
speaking, we should set the SO_KEEPALIVE option (by using setsockopt) to
monitor the connection. Please refer to the following KB article:

How to Determine Loss of Client/Server Connection
http://support.microsoft.com/default...b;en-us;140325

In .NET Framework, please refer to the corresponding KeepAlive option:

SocketOptionName Enumeration
http://msdn.microsoft.com/library/de...us/cpref/html/ frlrfsystemnetsocketssocketoptionnameclasstopic.as p

Please feel free to let me know if you have any problems or concerns.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.

Jul 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Adam Clauss | last post by:
There seems to be various methods to determine when the remote client disconnects, but all of them I have seen are Synchronous. AKA: Right before you try to send or receive data, check. Is there...
0
by: Johann Blake | last post by:
I am using the TcpClient to connect to a web site. I then open a NetworkStream and read the contents that are being sent back. The problem is that I have no idea when the remote host is finished...
0
by: Jonathan | last post by:
Hi, how to detect when an asynchronous socket is closed? Thanks!
0
by: Michael Kennedy [UB] | last post by:
Hi, I have a project using the TcpClient and its associated NetworkStream. Everything works well except for one condition which I haven't found any information about dealing with: How do I...
3
by: Dirk Reske | last post by:
Hello, in msdn stands, that the socket.available property can fire a SocketException when the remote machine has closed the connection. why can? I have to check the number of receivable bytes...
4
by: schwehr | last post by:
Hi All, I've tried to RTFM this and am having no luck. First off, I am using Mac OSX 10.4.7 with python 2.4.2 from fink. I am trying to connect to a server that should be rejecting...
1
by: Jordi | last post by:
Hi, I have my socket class using tcpClient framework 2.0... The socket is running perfectly but I've a problem for close the socket connection with the server! I try with this: Stm is the...
4
by: Andrew Jackson | last post by:
I am writing a newsgroup client. I have the protocol figured out. But I get slow transfer speeds off any of the network objects read the data from For example one of the commands for a news...
5
by: tichi | last post by:
I'm writing a program that in its most simplest form acts as a proxy between a local client and a remote server. But I cannot figure out how to detect when either the connection to the client is...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.