Hi!
I stumbeled over som serious disposal issues for VimService and possibly ServiceContent:
Connecting to the VimService (very) frequently via the same (windows) service, keeps the service using an increasing amount of memory.
To dispose VimService I am using the following:
if (_service != null)
{
_service.Abort();
if(_service.Container!=null)
_service.Container.Dispose();
service.Logout(sic.sessionManager);
_service.Dispose();
_service = null;
_sic = null;
}
Is there more that should be done to do a 100% cleanup?
Thx, Tos2k