show/hide this revision's text 5 deleted 1183 characters in body

After checking the entire inheritance hierarchy of

UPDATE:
A much better alternative to worrying about disposing your web services , I found the Component class you mentioned (I guess I should check the entire hierarchy of a class before writing it off as not being IDisposable).

Knowing this, it is ideal would be to call Dispose() for keep only a single instance of each web service. As with all IDisposable classes, the garbage collector will eventually finalize the class and clean up the resources automaticallyusing a singleton pattern. If you don't care about how long resources Web services are kept for then you can do without the Dispose() call. Considering how important performance stateless, so they can be for web sites though, it is shared between connections on a good idea to take advantage of the Dispose() method so that resources are freed as soon as possibleweb server.

The easiest way to do this

Here is to an example of a Web Service class you can use the keyword using which is built into C# to make using IDisposable classes easy hold references to deal with. You should use using something like the following:

using(MyWebService your web service = new MyWebService())     // Do stuff here

This will automatically call Dispose() once you reach the end of the blockinstances. The other alternative, which is identical to usingThis singleton is this:

MyWebService service = new MyWebService()     // Do stuff here     service.Dispose();

UPDATE
I just ran a simple benchmark test of my own on Web Serviceslazy and thread-safe. It looks like calling Dispose()is actually 58% slower (on average) in my tests. You may actually want to avoid calling it as it appears there are some hidden overhead costs in calling Dispose().

// This test is run using a default "Web Service" project in // Visual Studio '08 and a defualt web site on a Default.aspx // page advised that has 2 labels on it for displaying if you make your singletons lazy, they are also kept thread safe by following the test resultssame logic. // This test is obviously not a great example as it isn't exactly // "real world" and doesn't test enough types of thingsTo learn more about how to do this, but it // gets the point acrossread Microsoft's documentation on Implementing Singletons.int testSize = 500;System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();long[] withDispose = new long[testSize];long[] withoutDispose 

public static class WS    private static object sync = new long[testSize];string test1 = string.Empty;string test2 = string.Empty;for (int i = 0; i < testSizeobject();    i++)private static MyWebService _MyWebServiceInstance;    public static MyWebService MyWebServiceInstance        sw.Start();    using get            if (Service1 webService = new Service1()_MyWebServiceInstance== null)        test1 = webService.HelloWorld();    sw.Stop();    withDispose[i] = sw.ElapsedTicks;    sw.Reset();for lock (int i = 0; i < testSize; i++sync)                    if (_MyWebServiceInstance== null)    sw.Start();    Service1 webService = _MyWebServiceInstance= new Service1();    test2 = webService.HelloWorld();    sw.Stop();    withoutDispose[i] = sw.ElapsedTicks;    sw.Reset()object();                return _MyWebServiceInstance;    Label1.Text = withDispose.Average().ToString();

And then when you need to access your web service, you can do this:

WS.MyWebServiceInstance.MyMethod(...)

or

var ws = withoutDispose.Average().ToString()WS.MyWebServiceInstance;

note: For anyone who stumbled upon this answer, view the history of this post to see my previous answer, which included a simple benchmark test for web service performance hits when calling Dispose().

show/hide this revision's text 4 deleted 319 characters in body

The garbage collector will clean up the web service reference manually.

Only objects that explicitly implement IDisposable should ever be manually disposed. What kind of web service reference are you using that has a Dispose() method for it?

EDIT

After checking the entire inheritance hierarchy of web services, I found the Component class you mentioned (I guess I should check the entire hierarchy of a class before writing it off as not being IDisposable).

Knowing this, it is ideal to call Dispose() for a web service. As with all IDisposable classes, the garbage collector will eventually finalize the class and clean up the resources automatically. If you don't care about how long resources are kept for then you can do without the Dispose() call. Considering how important performance can be for web sites though, it is a good idea to take advantage of the Dispose() method so that resources are freed as soon as possible.

The easiest way to do this is to use the keyword using which is built into C# to make using IDisposable classes easy to deal with. You should use using something like the following:

using(MyWebService service = new MyWebService()) 
{
    // Do stuff here
}

This will automatically call Dispose() once you reach the end of the block. The other alternative, which is identical to using is this:

MyWebService service = new MyWebService()
try
{
     // Do stuff here
}
finally
{
     service.Dispose();
}

UPDATE
I just ran a simple benchmark test of my own on Web Services. It looks like calling Dispose() is actually 58% slower (on average) in my tests. You may actually want to avoid calling it as it appears there are some hidden overhead costs in calling Dispose().

// This test is run using a default "Web Service" project in 
// Visual Studio '08 with
// and a defualt web site on a Default.aspx 
// page that has 2 labels on it for displaying the test results.

// This test is obviously not a great example as it isn't exactly 
// "real world" // and doesn't test enough types of things, but it 
// gets the point across.
int testSize = 500;
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
long[] withDispose = new long[testSize];
long[] withoutDispose = new long[testSize];
string test1 = string.Empty;
string test2 = string.Empty;
for (int i = 0; i < testSize; i++)
{
    sw.Start();
    using (Service1 webService = new Service1())
    {
        test1 = webService.HelloWorld();
    }
    sw.Stop();
    withDispose[i] = sw.ElapsedTicks;
    sw.Reset();
}

for (int i = 0; i < testSize; i++)
{
    sw.Start();

    Service1 webService = new Service1();
    test2 = webService.HelloWorld();

    sw.Stop();

    withoutDispose[i] = sw.ElapsedTicks;
    sw.Reset();
}


Label1.Text = withDispose.Average().ToString();
Label2.Text = withoutDispose.Average().ToString();
show/hide this revision's text 3 Updated answer with a benchmark to test performance.

UPDATE
I just ran a simple benchmark test of my own on Web Services. It looks like calling Dispose() is actually 58% slower (on average) in my tests. You may actually want to avoid calling it as it appears there are some hidden overhead costs in calling Dispose().

// This test is run using a default "Web Service" project in Visual Studio '08 with// a Default.aspx page that has 2 labels on it for displaying the test results.// This test is obviously not a great example as it isn't exactly "real world"// and doesn't test enough types of things, but it gets the point across.int testSize = 500;System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();long[] withDispose = new long[testSize];long[] withoutDispose = new long[testSize];string test1 = string.Empty;string test2 = string.Empty;for (int i = 0; i < testSize; i++)    sw.Start();    using (Service1 webService = new Service1())        test1 = webService.HelloWorld();    sw.Stop();    withDispose[i] = sw.ElapsedTicks;    sw.Reset();for (int i = 0; i < testSize; i++)    sw.Start();    Service1 webService = new Service1();    test2 = webService.HelloWorld();    sw.Stop();    withoutDispose[i] = sw.ElapsedTicks;    sw.Reset();Label1.Text = withDispose.Average().ToString();Label2.Text = withoutDispose.Average().ToString();
        
show/hide this revision's text 2 Improved answer
show/hide this revision's text 1