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 hereThis 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().
