I use Grails + spring-security + LDAP to authenticate users. The authentication works now but I need the plain text password to authenticate a second service.
I tried the SpringSecurityService properties but none contains the password.
Do I have to implement my own UserDetailsMapper or does the LdapUserDetailsMapper also provide the mapping of the plain text password retrieved from the web form?
erase-credentials
setting for spring security. Setting it to false may help retrieve the password. However, I have no idea where this setting goes. I'm looking for where to put the setting and found this post. – Fie