vote up 3 vote down star
1

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?

flag

4 Answers

vote up 5 vote down check

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 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();
link|flag
Thanks! I'll definitely implement a using now. – BeaverProj Jan 11 at 19:02
@DanHerbert, we have revision control on your question publically available.. so you don't need to clutter your post with a ton of crossed out stuff. It is distracting – Simucal Jan 16 at 3:42
I crossed out some things since they are still relevant (in some ways). I'm getting rid of the first crossed out part. – Dan Herbert Jan 16 at 3:54
Can you write us a whole book on this ? your almost there... – Jobo Jan 16 at 4:00
So it actually reduces performance? Yikes. OK. Rethinking this. Performance is more important than making sure the memory is freed right away. – BeaverProj Jan 23 at 17:48
vote up 1 vote down

I think the DataService inherits Dispose from Component.

link|flag
vote up 0 vote down

what are you trying to accomplish here?

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

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.

link|flag
My question was more from a should you do it standpoint as apposed to a do you have to do it standpoint. My main concern is memory leaks which would slowly degrade performance over time. – BeaverProj Jan 23 at 17:49
vote up 0 vote down

Objects that implement IDispose should be disposed of manually to assist the garbage collector.

If you object is short lived use a using block. For objects that can be retained ensure that they object that retains them disposes of them when it is also disposed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.