Hi all,
I view many posts about this issue , the connected property does not tell us the current status of the socket.
based on couple of suggestions of msdn , and some article here , I try to write an helper method that will tell if the socket is connected or not , but it's not working good
continue to tell me that the socket is connectedeven if the other party already call shutdown(both) + close , or , even if the other party close the app itslef.
also I determine different behaviour when my app running behind NAT
when I run behind NAT , calling to socket.Receive(..) throw exception which was good forme to determine that it's already closed the connection , it doesn't throw nothing when I run the same code without NAT
Here is my code:
/// <summary>
/// Determine if the givven socket is connected or not
/// </summary>
/// <remarks>
/// There is a problem to based the Socket.Connected property since it's show the last operaion status: (from msdn)
/// The Connected property gets the connection state of the Socket as of the last I/O operation. When it returns false, the Socket was either never connected, or is no longer connected.
/// The value of the Connected property reflects the state of the connection as of the most recent operation. If you need to determine the current state of the connection, make a nonblocking, zero-byte Send call. If the call returns successfully or throws a WAEWOULDBLOCK error code (10035), then the socket is still connected; otherwise, the socket is no longer connected.
/// </remarks>
/// <seealso cref="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/3cf03e0641731659/76e2563d28f1b256?lnk=st&q=c%23+determine+if+socket +connected&rnum=5#76e2563d28f1b256"/>
/// <seealso cref="http://windowssdk.msdn.microsoft.com/en-us/library/system.net.sockets.socket.connected.aspx"/>
/// <returns>Bool , True if connected , False if not</returns>
public static bool IsConnected(Socket checkSocket)
{
try
{
//if (checkSocket.GetSocketOption(SocketOptionLevel.Soc ket, SocketOptionName.KeepAlive, 1)[0].Equals(1))
// return checkSocket.Connected;
if (checkSocket.Connected == false)
return false;
//checkSocket.BeginSend(new byte[0], 0, 0, SocketFlags.None, null, null);
bool bSelectRead = checkSocket.Poll(1, SelectMode.SelectRead);
bool bSelectWrite = checkSocket.Poll(1, SelectMode.SelectWrite);
int available = checkSocket.Available;
//if (bSelectWrite && bSelectRead && available 0)
if (bSelectWrite && bSelectRead)
{
//return true;
//checkSocket.BeginReceive(new byte[1], 0, 1, SocketFlags.Peek, null, null);
checkSocket.Receive(new byte[0], 0, 0, SocketFlags.Peek);
checkSocket.Send(new byte[0], 0, 0, SocketFlags.None);
return checkSocket.Connected;
}
else
return false;
}
catch (SocketException)
{
return false;
}
catch (ObjectDisposedException)
{
return false;
}
}
here is MS code , that also don't work - tell that the socket is connected even if the other party already close...
// This is how you can determine whether a socket is still connected.
bool blockingState = client.Blocking;
try
{
byte [] tmp = new byte[1];
client.Blocking = false;
client.Send(tmp, 0, 0);
Console.WriteLine("Connected!");
}
catch (SocketException e)
{
// 10035 == WSAEWOULDBLOCK
if (e.NativeErrorCode.Equals(10035))
Console.WriteLine("Still Connected, but the Send would block");
else
{
Console.WriteLine("Disconnected: error code {0}!", e.NativeErrorCode);
}
}
finally
{
client.Blocking = blockingState;
}
Console.WriteLine("Connected: {0}", client.Connected); 7 16785
So... this method is something many developers need , there are noting in
..NET that already do it ?
"Vadym Stetsyak" <va*****@ukr.netwrote in message
news:uo**************@TK2MSFTNGP06.phx.gbl...
Hello, semedao!
sbased on couple of suggestions of msdn , and some article here , I try
sto write an helper method that will tell if the socket is connected or
snot , but it's not working good continue to tell me that the socket is
sconnectedeven if the other party already call shutdown(both) + close ,
sor , even if the other party close the app itslef.
Until there is no network I/O you can't get peer's socket state.
salso I determine different behaviour when my app running behind NAT
when I
srun behind NAT , calling to socket.Receive(..) throw exception which
was
sgood forme to determine that it's already closed the connection , it
sdoesn't throw nothing when I run the same code without NAT
When you're behind NAT, NAT server can detect peer state and send you
RST packet that will notify that socket is not connected anymore.
[skipped]
There are following ways how to resolve:
- use SocketOptionName.KeepAlive
- develop custom keep-alive mechanism.
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
Hello, semedao!
sSo... this method is something many developers need , there are noting
sin .NET that already do it ?
If you're using plain sockets you have to do it yourself.
In order to make keep-alives work, specify KeepAliveTime and KeepAliveInterval
under windows registry
( http://support.microsoft.com/default...b;en-us;158474 ).
Computer restart may be required.
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
In article <OD**************@TK2MSFTNGP02.phx.gbl>, Semedao wrote:
So... this method is something many developers need , there are noting in
..NET that already do it ?
Semedao,
It's one of those yes and no situations. The Socket.Connected property tells
you if the local socket knows it's connected to the other end.
Unfortunately, the socket doesn't always know if it's connected due to the
way the TCP protocol is designed. The socket also only updates its
open/closed state when a Send or Receive operation is performed (see http://windowssdk.msdn.microsoft.com...sockets.socket
_members.aspx). If you search this newsgroup, you'll find many threads
addressing this isuue.
Mike
Hi,
This is Charles from Microsoft Online Community Support. For this issue, I
noticed that Vadym and Mike had given you explanations. I think the replies
are reasonable. If you wanted to know exactly the connection status, I'm
afraid that you need to judge according to socket exception when you send
or receive data on the socket.
Could you please let me know the issue status and if you need further
research? If you have any other questions or concerns, please feel free to
let me know. It's my pleasure to be of assistance.
Sincerely,
Charles Wang
Microsoft Online Community Support
I understand this issue , so the only way is to inherit the socket and
override the send & receive method to throw some event of
connected/disconnected
thanks
"Charles Wang[MSFT]" <ch******@online.microsoft.comwrote in message
news:cV**************@TK2MSFTNGXA01.phx.gbl...
Hi,
This is Charles from Microsoft Online Community Support. For this issue, I
noticed that Vadym and Mike had given you explanations. I think the
replies
are reasonable. If you wanted to know exactly the connection status, I'm
afraid that you need to judge according to socket exception when you send
or receive data on the socket.
Could you please let me know the issue status and if you need further
research? If you have any other questions or concerns, please feel free to
let me know. It's my pleasure to be of assistance.
Sincerely,
Charles Wang
Microsoft Online Community Support
Hi,
Appreciate your understanding and updating on this issue.
If you have any other questions or concerns, please feel free to let me
know. It's always my pleasure to be of assistance.
Sincerely,
Charles Wang
Microsoft Online Community Suppport
In article <e5**************@TK2MSFTNGP04.phx.gbl>, Semedao wrote:
so the only way is to inherit the socket and
override the send & receive method to throw some event of
connected/disconnected
You don't need to override the Send and Receive methods to have errors
reported as events. The base methods already raise socket exceptions
(etc.). What you do want to do is to ensure that your application has
a receive outstanding when you want to detect problems. When a simple,
synchronous (server) application has finished processing one request,
it naturally uses the Receive mthod to get the next request so error
exceptions are raised at this point.
Mike This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: DreJoh |
last post by:
I've read many articles on the subject and the majority of them give the same
solution that's in article 821625 on the MSDN website. I'm using the
following code and when a the client disconnects...
|
by: Dr. J |
last post by:
I have an application that opens a socket and connects to another
application listening over a port. The problem I am encountering is that
when the listening application is closed my application...
|
by: Nuno Magalhaes |
last post by:
socket.Connected only gives the last access result but not the current
status of the socket.
What is the best way to determine if a socket is still connected?
Because I want to cancel all my...
|
by: Cheryl |
last post by:
Hi. I am having a problem on handling asynchronous sockets in C#. I
implemented a pair of client and server sockets. The connection is ok when
first connected. However, when I turned off the...
|
by: Giampaolo Rodola' |
last post by:
Hi there,
since the socket.socket.family attribute has been introduced only in
Python 2.5 and I need to have my application to be backward compatible
with Python 2.3 and 2.4 I'd like to know how...
|
by: A. W. Dunstan |
last post by:
I'm creating a socket as follows:
m_networkSocket = new Socket(AddressFamily.InterNetwork,
SocketType.Stream,
ProtocolType.Tcp);
m_networkSocket.LingerState = new LingerOption(true, 1);...
|
by: emibt08 |
last post by:
Hi. I have an array of sockets in my application and i need to know which sockets are connected and which ones aren't. In order to do that i check if the socket equals INVALID_SOCKET or NULL, but i...
|
by: StevenBlake |
last post by:
Hi,
I have developed a C# application which sends the data to the connected client.
I am using TCP/IP protocol. The client connects with my application using 'Telnet command' through command...
|
by: kashifjawed |
last post by:
I'm developing a c# asynchronous socket application for tranfering file or large data from client to server and server to client as well in chunks.
Application sometimes transfer file from client...
|
by: Rina0 |
last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
How does React native implement an English player?
| |