hi, I'm using weblogic8.1 and ldap for my
J2ee project, user profile is stored both in LDAP and Database.
Current scenarioes like below:
user registration or update:
after user submit profile from web page, a StatelessSB would store profile data both in LDAP and Database.
user login:
1. after user submit username/password, an Authentication provider configured in weblogic server would search user in LDAP and return a set of roles of this user.
2. a StatelessSB would search LDAP again, to retrieve data user's profile from LDAP, then this profile is stored in HttpSession
my question is that, I feel in user login scenario, LDAP is accessed twice, both in Authentication provider and statelessSB, is there any way to allow authentication provider return the user's profile data in addition to a set of roles of the user?
any help appreciated!