java Programming Glossary: principalprefix
How do you authenticate against an Active Directory server using Spring Security? http://stackoverflow.com/questions/84680/how-do-you-authenticate-against-an-active-directory-server-using-spring-security name contextFactory ref contextSource beans property name principalPrefix value QUESO beans bean Then the LdapAuthenticationProvider class.. contextFactory private String principalPrefix public DirContextOperations authenticate Authentication authentication.. out of the authentication object. String principal principalPrefix authentication.getName String password if authentication.getCredentials..
|