Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Error : Register Domino User with ADchangelogv2

52 views
Skip to first unread message

a.yut...@gmail.com

unread,
Mar 22, 2008, 2:02:29 AM3/22/08
to
Hi I testing add new User from Active Directory and Register User to
Domino 8
But I found Error

PLS Help Me !!!

====================================================
My OUTPUT Mapping
====================================================
EmployeeID sAMAccountName
FirstName givenName
FullName cn
InternetAddress mail
LastName sn
REG_CertPassword ret.value = "P@ssw0rd";
REG_CertifierIDFile ret.value = "c:\\IBM\\Domino\\data\\cert.id";
REG_CreateMailDb ret.value = "C:\\IBM\\Domino\\data\\mail\
\"+work.getString("mail")+".nsf";
REG_IdFile ret.value = "c:\\Note_IDFile\\"+ work.getString("mail")
+".id";
REG_Perform ret.value = "true";
ShortName sAMAccountName
Title cn
seeAlso objectGUIDStr
======================================================
ERROR
======================================================
12:45:31 [UpdateDomino] CTGDIS495I handleException , addonly,
java.lang.Exception: CTGDKC044E Unable to add the entry. Cannot update
user document after registration. User document not found or multiple
documents found.
12:45:31 [UpdateDomino] CTGDIS810E handleException - cannot handle
exception , addonly
java.lang.Exception: CTGDKC044E Unable to add the entry. Cannot update
user document after registration. User document not found or multiple
documents found.
at
com.ibm.di.connector.dominoUsers.DominoUsersConnector.inner_putEntry_DefaultMailTemplate(Unknown
Source)
at
com.ibm.di.connector.dominoUsers.DominoUsersConnector.inner_putEntry(Unknown
Source)
at com.ibm.di.connector.dominoUsers.DominoUsersConnector.run(Unknown
Source)
at java.lang.Thread.run(Thread.java:797)
12:45:31 CTGDIS266E Error in NextConnectorOperation. Exception
occurred: java.lang.Exception: CTGDKC044E Unable to add the entry.
Cannot update user document after registration. User document not
found or multiple documents found.
java.lang.Exception: CTGDKC044E Unable to add the entry. Cannot update
user document after registration. User document not found or multiple
documents found.
at
com.ibm.di.connector.dominoUsers.DominoUsersConnector.inner_putEntry_DefaultMailTemplate(Unknown
Source)
at
com.ibm.di.connector.dominoUsers.DominoUsersConnector.inner_putEntry(Unknown
Source)
at com.ibm.di.connector.dominoUsers.DominoUsersConnector.run(Unknown
Source)
at java.lang.Thread.run(Thread.java:797)

kolev.kg

unread,
Mar 26, 2008, 3:36:22 PM3/26/08
to

Hi,

I am assuming that the [UpdateDomino] connector in the AL is running
in Update mode?
If that is correct then you need to check your Link Criteria.
The exception is saying: "User document not found or multiple
documents found."
My guess here is that your lookup operation (executed before the
actual update operation) returns more than one Entries. In that case
you need to implement a custom logic for handling each returned entry
in the "On Multiple Entries" hook of the [UpdateDomino] connector.
Something like this:

var oldEntry = UpdateDomino.connector.getFirstFindEntry();

while(oldEntry != null) {
UpdateDomino.modify(oldEntry, work);
oldEntry = UpdateDomino.connector.getNextFindEntry();
}

0 new messages