-----Original Message-----From: eLink Discussion: LAPI Discussion [mailto:lapi@elinkkc.opentext.com]Sent: April 28, 2003 4:57 PMTo: eLink RecipientSubject: LAPI and Directory Services and NTLM LAPI and Directory Services and NTLM Posted by IDSNRO01User1 on 04/28/2003 04:52 PM I am using a C dll and want to access the livelink resources. I am using the Directory Services module where NT users have no need to re-enter username and pwd when connecting to livelink (NTLM Authentication). I am synchronizing with an Active Directory and keeping the password as Hidden within the Sync manager in the Admin.Index section within Livelink.So, what values should I assigned for the username and password when I want to create a Session within livelink by LL_SessionAlloc()??? Or LL_SessionAllocEx() are there any other ways to achieve this? Can anybody provide some source code for reference? Thank you very much
-----Original Message-----From: eLink Discussion: LAPI Discussion [mailto:lapi@elinkkc.opentext.com]Sent: April 30, 2003 10:09 AMTo: eLink RecipientSubject: LL_ListRights LL_ListRights Posted by IDSNRO01User2 on 04/30/2003 10:07 AM In reply to: RE LAPI and Directory Services and NTLM Posted by kward (Ward, Kevin) on 04/29/2003 09:04 AM OK, we've got the login working now, and we are generating a valid session. I can see all the documents I have permissions to, but I am having a problem getting my rights. Immediately after connecting (via the LL_SessionAllocEx() call indicated in the previous response), I am issuing the following call: LL_ValueAlloc (&rights); status = LL_ListRights (ll_session,LL_USER,user, rights);Where ll_session is the return from LL_SessionAllocEx(), LL_USER is 0, user is my username (DOMAIN\username), and rights is an LLVALUE. After the return, the value of status is 401602. Is there something special that needs to be done in order to get this value? Thanks!