I am running a Lotus Script agent on the Domino server (R6) using the following code (excerpt):
adminp.CertifierFile = pCurrCertifierPath(0)
adminp.CertifierPassword = pCurrCertifierPass(0)
noteid$ = adminp.MoveUserInHierarchyRequest(pUsername(0),pNewCertifierName(0), False)
adminp.CertifierFile = pNewCertifierPath(0)
adminp.CertifierPassword = pNewCertifierPass(0)
noteid$ = adminp.MoveUserInHierarchyComplete(noteid$)
Here is the problem:
I have one certifier file that I can use that will always work! Every other certifier I try fails in the call to “MoveUserInHierarchyRequest” with the following agent error:
“Agent ‘UserRelocation’ error: Unable to return Note ID”
I think that the one certifier that does work is using voodoo magic, but if anyone knows a better explanation as to why this would be happening or what I should check, it would be greatly appreciated??!
Thanks
Andy