-
Jul 27th, 2010, 10:55 AM
#1
Querying LDAP for User Name
Hi -
I am new to LDAP. I have an implementation working well using the DefaultSpringSecurityContextSource.
I do have one issue, though - my application requires that the user who enters data into the application store their user ID, along with the data, in the DBMS. The application data is entered into a JSP form and ultimately saved via a servlet.
Is there any way for the servlet to query LDAP, during the save process, to determine the user's LDAP user name? Or do I have to pass that information from form-to-form, starting with the log-in form?
-
Jul 27th, 2010, 11:58 AM
#2
Tom,
Assuming you are using Spring Security in your application, here is the code you can use in your Servlet to retrieve logged in user information:
SecurityContextHolder.getContext().getAuthenticati on().getPrincipal();
-
Jul 27th, 2010, 12:39 PM
#3
Great - worked perfectly. Thanks so much for your help!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules