I am developing an application where I work with CertAdm.dll to make connections to a Certificate Authority. Sometimes I get the error "An attempt was made to open a Certification Authority database session, but there are already too many active sessions. The server may need to be configured to allow additional sessions."
If I configure my connection like the code below, I dont get the error and all works fine.
CERTADMINLib.ICertView2 cv2 = new CERTADMINLib.CCertViewClass();
try
{
cv2.OpenConnection(srtCAConfig);
}
catch
{
GC.Collect();
GC.WaitForPendingFinalizers();
cv2.OpenConnection(srtCAConfig);
}
Now what I am wondering about is that I have read a lot where people say you shouldn't use GC.Collect(). Why shouldn't I? It solves my problem?
All help is very appreciated.
GC.Collect"fixes" your application, it's an indication that you've got serious problems elsewhere. You need to figure out why you're leaking memory and fix that, instead of patching the symptoms. – Cody Gray Apr 20 '11 at 11:13