What does this mean? Does anybody know how to fix it?We are even getting: AllocMemHandle: OUT OF PRIVATE HANDLES!!
Thankfull for any tips!
What does this mean? Does anybody know how to fix it?We are even getting: AllocMemHandle: OUT OF PRIVATE HANDLES!!
Thankfull for any tips!
Subject: AllocHandle: OUT OF PRIVATE HANDLES!
Hi Maria,
let me guess, you have a web application? I think it’s a bug in the HTTP Task. There are only some things you can do.
reduce your views
use GetNextDocument in Script not GetNthDocument
use for next / while wend not do loop
Subject: RE: AllocHandle: OUT OF PRIVATE HANDLES!
Hi, thanks for your response. We don’t have any apps in the server. It’s a mail server…
Just found out that this error is present on every 6.0.2 all OS. Major BUG!!!
Subject: AllocHandle: OUT OF PRIVATE HANDLES!
Hallo,I had the same problem while an java-agent made a “doc = doc.nextDocument(doc)” loop over a large number of documents (>7000).
My workaround is to use an ViewNavigator to make the loop (entry = nav.getNext(entry)).
And it’s also important to recyle “doc.recycle()” the documents after changes!
hope it helps!
Manuel
Subject: NOTES: AllocHandle: OUT OF PRIVATE HANDLES!
After conducting some testing, I found that we need to explicitly recycle Document and Item objects under Domino JVM.
Document object here includes also Profile gotten by GetProfileDocument()
Item here refers to Document.appendItemValue() and Document.replaceItemValue(), which returns an Item instances!
I also quite confirm that session, agentContext, DB, view objects are alright without having to be recycled explicitly.
Subject: RE: NOTES: AllocHandle: OUT OF PRIVATE HANDLES!
I just had this error cause a server crash on a mail server, the http task is running but no web apps are being used except for the webadmin. Does that mean that this will happen eventually for any notes server that’s just running normal built in Domino processes?? Apparently this error hasn’t been fixed even in version 7, can anyone confirm this?