I like to use Spring WS for consuming a 3th-party webservice for which I only have a wsdl. I extracted the xsd schema from the wsdl and generated the classes using JAXB1.
Using the...
Type: Posts; User: harro; Keyword(s):
I like to use Spring WS for consuming a 3th-party webservice for which I only have a wsdl. I extracted the xsd schema from the wsdl and generated the classes using JAXB1.
Using the...
Thanks!
I actually extended org.acegisecurity.providers.ProviderManager and have overridden the doAuthentication method. It checks if a user is in a blocklist before it delegates the actual...
I need to block a user for a half hour if he/she has 3 unsuccessfull login attempts.
I could listen for an AbstractAuthenticationFailureEvent. But that would not allow me to block a user because the...
That would be a possility. But I was under the impression that Acegi could do that for me at login.
The LdapUserDetailsImpl I retrieve after logon has a method getAttributes which always is empty....
I am authentication against LDAP, this works fine, but I have some specific user attributes wich I want to retrieve. (e.g. userMustChangePassword)
In order to retrieve these I have an...