Avatar of Tom Knowlton
Tom Knowlton
Flag for United States of America asked on

Web service - unclosed connections

I've been asked to take a look at a problem we're having with web service connections not being closed.

My understanding is that after 4 minutes the connections are closed by the server?

I guess the problem is that we are running out of available connections?

I am looking for some advice on some common things to look for in the C# source that may be causing the connections not to close.

How does garbage collection and web services work normally?

Is there a way to ensure that the socket connection closes immediately after the web service call is finished?


I was shown on the server what the unclosed connections look like:
netstat -bn


 TCP    127.0.0.1:2808         127.0.0.1:28002        ESTABLISHED     2360
 [avscc.exe]


 TCP    10.1.10.27:5070        8.26.196.251:80        CLOSE_WAIT      1648
 [VCTray.exe]

 TCP    127.0.0.1:4548         127.0.0.1:7031         CLOSE_WAIT      2632
 [jusched.exe]



///////////// these connections are not getting closed ///////////////////////////
 TCP    10.1.10.27:4887        10.1.10.22:135         TIME_WAIT       0
 TCP    10.1.10.27:4888        10.1.10.22:1025        TIME_WAIT       0
 TCP    10.1.10.27:4993        10.1.20.2:443          TIME_WAIT       0
 TCP    10.1.10.27:4994        10.1.20.2:443          TIME_WAIT       0
 TCP    10.1.10.27:4995        10.1.20.2:443          TIME_WAIT       0
 TCP    10.1.10.27:4996        10.1.20.2:443          TIME_WAIT       0
 TCP    10.1.10.27:4997        10.1.20.2:443          TIME_WAIT       0

Open in new window




From a scalability perspective, some of the people I have spoken to have suggested that this problem has only recently begun to happen because the web service is getting called more often.  So, bugs that you might get away with start to come to the surface that were not evident before.  They think that is what we are experiencing.
.NET Programming

Avatar of undefined
Last Comment
Tom Knowlton

8/22/2022 - Mon
lojk

I just posted a comment in another question that should answer this question for you quite nicely.. :-)

https://www.experts-exchange.com/questions/27630876/Necessary-or-optional-to-close-a-webservice-client-connection.html
ASKER CERTIFIED SOLUTION
lojk

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Tom Knowlton

ASKER
Thank you.

In case I can't find the sample code, can you show me in a code snippet how to close the connection?
lojk

Just checked on my wcf4 service if you browse to the .svc url you get the sample..

here is the output of that page though, warts and all...

---------------------------------------------


svcDataSync Service


You have created a service.

To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:



svcutil.exe http://localhost/BytesStore/svcDataSync.svc?wsdl

This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service. For example:


C#

class Test
{
    static void Main()
    {
        IsvcDataSyncClient client = new IsvcDataSyncClient();

        // Use the 'client' variable to call operations on the service.

        // Always close the client.
        client.Close();
    }
}



Visual Basic

Class Test
    Shared Sub Main()
        Dim client As IsvcDataSyncClient = New IsvcDataSyncClient()
        ' Use the 'client' variable to call operations on the service.

        ' Always close the client.
        client.Close()
    End Sub
End Class
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
Tom Knowlton

ASKER