I have existing Java application that is using Acegi for authentication/authorization. Our new web interface would be preferably written in Django. I would like Django to maintain users - registration etc. Django would either share or update Acegi authentication data so the older application still works and users don't have to use two se...
I'm using acegi security in Grails. Is there a way to log a failed login attempt as info or warning so:
ERROR springsecurity.GrailsDaoImpl - User not found: XXXXXX
is logged as required ?
Thanks
...
Hi.
I'm using Spring Security 2 with Spring MVC. The tomcat container I will be using already has NTLM support and will provide access to only authenticated users, before forwarding their username in the header of the request.
I tried writing a custom AutenticationEntryPoint with the idea that no form/ http-basic login would be required...
<filter>
<filter-name>Acegi Filter Chain Proxy</filter-name>
<filter-class>
org.acegisecurity.util.FilterToBeanProxy
</filter-class>
<init-param>
<param-name>targetClass</param-name>
<param-value>
org.acegisecurity.util.FilterChainProxy
</param-value>
</init-param>
</filter>...
Hi, I'm kinda lost.
I'm writing test cases for a project which still uses the Acegi plugin (not the newer Spring Core Security plugin) and as of now, I've managed to do what this site (http://www.zorched.net/2008/09/01/grails-testing-acegi-security/)
has suggested regarding the detection of which user is currently logged in. However, i...
Hi everyone.
This is a branch from this question. Branched out because the original purpose of that question was something else.
I'm looking for the easiest way to check if a password is expired. A password will expire if its older than N days, where N is a value stored in another table.
My User class looks like this:
Security config...
Hi,
I'm writing a module to force a user whose password has expired to renew its password. This app uses the acegi security plugin. After the expired credentials are detected, the user is redirected to a "insert a new password" page. However, when the form is submitted, the auth action is executed, instead of the desired one (renewPass...
Hey I am using struts2 and acegi.I am new to both of these.In my application which i have wrote using struts,i need to add security feature.For this I am using acegi(spring security).
For which I have mapped acegi filter in web.xml along with mapping of struts filter.Both struts and acegi seems to be working fine except when acegi direct...