Wow, thanks for the reply. I would try your suggestion except I left the position on 15 August. It was an awful place to work and I'm much happier not being there but I did have to leave behind a few...
Type: Posts; User: pigwin32; Keyword(s):
Wow, thanks for the reply. I would try your suggestion except I left the position on 15 August. It was an awful place to work and I'm much happier not being there but I did have to leave behind a few...
I can show you what I did, hopefully that will be of some help. Let me know if you need more info. First I have an interface:
public interface IPasswordUtil {
boolean Change( String...
Hi
I am using Sun's Open Message Queue and if I restart the broker my client fails to reconnect. Any assistance with this would be greatly appreciated :confused::
INFO | jvm 1 |...
That worked perfectly, thanks Luke. I guess one of the issues I'm finding is that while the javadocs are pretty good, they don't really provide idiomatic usage of the classes/methods and there...
Thanks for the response Luke.
Hello again, I'm writing a method to allow a user to change their own password in an OpenLDAP repository. In order to allow the user to change the password I want to first re-authenticate the user in...
Thanks for the reply Luke, I will admit to being a little confused about how that was supposed to work.
Hi
I'm trying to figure out what if any support there is for the LdapUserDetailsImpl methods isAccountNonExpired(), isAccountNonLocked() etc. I can't find anywhere a reference to which ldap...
FWIW, the problem was that I hadn't provided credentials for an acegisecurity identity in my applicationContext.xml so it was trying to use anonymous access to search for user roles.
<bean...
FWIW, the problem was that I hadn't provided credentials for an acegisecurity identity in my applicationContext.xml so it was trying to use anonymous access to search for user roles.
<bean...
Yep, I've already tried that forum and received no response and thought I would try a little cross pollination. At this stage I guess I'm just stuck with allowing more anonymous access than I really...
Kia ora
I am using openldap to store user information for logging into a web app with acegisecurity providing authentication. I'm trying to secure my openldap repository and discovered that in...
Kia ora
I am using openldap to store user information for logging into a web app with acegisecurity providing authentication. I'm trying to secure my openldap repository and discovered that in...
Frankly I don't buy that, the information is read-only and associated with the user and attaching it as attributes at login provides a convenient location for accessing the information during the...
Kia ora
I have a cold so I apologise if I'm not entirely coherent.
I am using ldap for authentication in a struts/spring/acegisecurity application. There are a bunch of ldap attributes I want...
OK, as usual after posting I figured out what I was doing incorrectly - my directory service was using a distinguished name beginning with "cn" instead of "uid". So while it couldn't match using a...
Hello
I've been trying to get ldap authentication to work using the BindAuthenticator. I have finally succeeded by using the FilterBasedLdapUserSearch bean. My question is why hasn't it...