Do I need to dispose a web service reference in ASP.NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:13:39Z http://stackoverflow.com/feeds/question/429478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net 3 Do I need to dispose a web service reference in ASP.NET? BeaverProj 2009-01-09T19:58:14Z 2009-11-21T17:06:46Z <p>Does the garbage collector clean up web service references or do I need to call dispose on the service reference after I'm finished calling whatever method I call?</p> http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/429499#429499 6 Answer by Dan Herbert for Do I need to dispose a web service reference in ASP.NET? Dan Herbert 2009-01-09T20:03:55Z 2009-11-21T17:06:46Z <p><strong>UPDATE:</strong><br> A much better alternative to worrying about disposing your web services would be to keep only a single instance of each web service, using a <a href="http://msdn.microsoft.com/en-us/library/ms998426.aspx" rel="nofollow">singleton pattern</a>. Web services are stateless, so they can be shared between connections on a web server.</p> <p>Here is an example of a Web Service class you can use to hold references to your web service instances. This singleton is lazy and thread-safe. It is advised that if you make your singletons lazy, they are also kept thread safe by following the same logic. To learn more about how to do this, read Microsoft's documentation on <a href="http://msdn.microsoft.com/en-us/library/ms998558.aspx" rel="nofollow">Implementing Singletons</a>.</p> <pre><code>public static class WS { private static object sync = new object(); private static MyWebService _MyWebServiceInstance; public static MyWebService MyWebServiceInstance { get { if (_MyWebServiceInstance== null) lock (sync) if (_MyWebServiceInstance== null) _MyWebServiceInstance= new object(); return _MyWebServiceInstance; } } } </code></pre> <p>And then when you need to access your web service, you can do this:</p> <pre><code>WS.MyWebServiceInstance.MyMethod(...) </code></pre> <p>or</p> <pre><code>var ws = WS.MyWebServiceInstance; ws.MyMethod(...) </code></pre> <p><strong>note:</strong> 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 <code>Dispose()</code>.</p> http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/429592#429592 1 Answer by BeaverProj for Do I need to dispose a web service reference in ASP.NET? BeaverProj 2009-01-09T20:27:23Z 2009-01-09T20:27:23Z <p>I think the DataService inherits Dispose from Component.</p> http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/449471#449471 0 Answer by Jobo for Do I need to dispose a web service reference in ASP.NET? Jobo 2009-01-16T03:59:20Z 2009-01-16T03:59:20Z <p>what are you trying to accomplish here?</p> <p>If your worried about performance, then I would worry more about the responsiveness of the server hosting the webservice and the network speed, as they can dramatically affect the length of time you have to wait for the webservice call to complete (unless its asynchronous).</p> <p>The examples on MSDN dont call 'Dispose' and its quite obvious that the garbage collector will do its job, so unless your working on a realtime system that needs to process over 100,000 records in memory every second, then maybe you dont need to come up with a way to dispose resources or manage memory. </p> http://stackoverflow.com/questions/429478/do-i-need-to-dispose-a-web-service-reference-in-asp-net/653170#653170 0 Answer by orj for Do I need to dispose a web service reference in ASP.NET? orj 2009-03-17T06:19:01Z 2009-03-17T06:19:01Z <p>Objects that implement IDispose should be disposed of manually to assist the garbage collector. </p> <p>If you object is short lived use a <code>using</code> block. For objects that can be retained ensure that they object that retains them disposes of them when it is also disposed.</p>