Re: [Acegisecurity-developer] LdapPasswordAuthenticationDao.getGrantedAuthority

2005-04-17 Thread Robert r. Sanders
Ok, I will try and get it checked in shortly. Ben Alex wrote: [EMAIL PROTECTED] wrote: If you change line 445 (from the 2005-04-13_070009 snapshot) from String roleName = rolePrefix + ldapRole.toUpperCase() + roleSuffix; to String roleName = rolePrefix + ldapRole.toUpperCase().replaceAll

Re: [Acegisecurity-developer] LdapPasswordAuthenticationDao.getGrantedAuthority

2005-04-15 Thread Ben Alex
[EMAIL PROTECTED] wrote: If you change line 445 (from the 2005-04-13_070009 snapshot) from String roleName = rolePrefix + ldapRole.toUpperCase() + roleSuffix; to String roleName = rolePrefix + ldapRole.toUpperCase().replaceAll("[,= ]", "_") + roleSuffix; Then that should do it. Hi Matt

[Acegisecurity-developer] LdapPasswordAuthenticationDao.getGrantedAuthority

2005-04-15 Thread mdehoust
I've recently become acquainted with the Acegi Security System for Spring. Very nice work. I appreciate the helpful documentation and sample apps. I have found the sandbox LdapPasswordAuthenticationDao to be quite useful as well. It would be very helpful if the getGrantedAuthority method actually