.Net Client app holding socket...
-
Here is what netstat is showing.
TCP COMPUTERNAME:4483 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4484 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4485 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4486 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4487 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4488 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4489 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4490 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4491 111.111.111.111:https TIME_WAIT TCP COMPUTERNAME:4492 111.111.111.111:https TIME_WAIT
Jason W.Exactly, the socket is in a closing state. :) xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
-
Exactly, the socket is in a closing state. :) xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
Cool, is there a site that tells about the socket status options. I need to point my manager to it so he will get off my back. Thank you for the help. Jason W.
-
Cool, is there a site that tells about the socket status options. I need to point my manager to it so he will get off my back. Thank you for the help. Jason W.
If he doesnt believe, tell him to hire a consultant to come tell him the same, and a formal written apology to you and his superior. He will shut up quick. But I'll have a look while I'm at it. :) xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
-
Cool, is there a site that tells about the socket status options. I need to point my manager to it so he will get off my back. Thank you for the help. Jason W.
http://www.skynet.ie/~heathclf/fyp/fyp-interim/node13.html[^] The TIME_WAIT state is a state that all the TCP connections enter into when the connection has been closed. The length of time for this state is 240 seconds, which is to allow for any duplicate segments still in the network from the previous connection to expire. If you have direct access to the TcpClient or Socket class in your webservice (not sure of that), you can try tweaking some of the settings. HTH :) xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
-
If he doesnt believe, tell him to hire a consultant to come tell him the same, and a formal written apology to you and his superior. He will shut up quick. But I'll have a look while I'm at it. :) xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
Trust me I would love to tell him that, at this point I can't however. Jason W.
-
http://www.skynet.ie/~heathclf/fyp/fyp-interim/node13.html[^] The TIME_WAIT state is a state that all the TCP connections enter into when the connection has been closed. The length of time for this state is 240 seconds, which is to allow for any duplicate segments still in the network from the previous connection to expire. If you have direct access to the TcpClient or Socket class in your webservice (not sure of that), you can try tweaking some of the settings. HTH :) xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
Thank you for the help. Jason W.
-
Thank you for the help. Jason W.
AFAI can see, its part of the TCP/IP stack, not sure how u would go around changing it. Also any routers between you and the destination could have some control over it too. xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
-
AFAI can see, its part of the TCP/IP stack, not sure how u would go around changing it. Also any routers between you and the destination could have some control over it too. xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
What is AFAI? Jason W.
-
What is AFAI? Jason W.
A(s) F(ar) A(s) I K(now) ;P xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
-
A(s) F(ar) A(s) I K(now) ;P xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
If it isn't a problem I would like to pick your brain a little more. I found an article that says 'The side shutting down the connection gets the TIME_WAIT.' is this true. If it is then I don't need to worry about causing a denial of service on the server. Thoughts? Jason W.