Login « grails « Java Enterprise Q&A





1. Script level login to Grails app using Acegi security    stackoverflow.com

Scenario: I have a Grails app that uses Acegi security for authentication. I'm implementing a REST service endpoint in the app and want to be able to GET and POST ...

2. Capturing Login/Logout and Login Attempts with Grails and Acegi Plugin    stackoverflow.com

I have partially implemented a solution using an grails filter and a session listener that required me to modify the web.xml. The session listener tells me when the session has ended, ...

3. Case insensitive login in Grails with acegi    stackoverflow.com

is there a way to force the login to be case insensitive using acegi in grails ? I didn't find a matching entry to be set in the SecurityConfig file. Thanks ...

4. How to Access other values from Login Form using Acegi Plugin in Grails    stackoverflow.com

I want to pass in other hidden values to the server on the form for login. Then I want to be able to do some other computations on the server ...

5. Logging failed login attempt in grails    stackoverflow.com

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 ...

6. grails Acegi: How to check for expired password    stackoverflow.com

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 ...

7. How to change locale i18n in Grails after login (with acegi)?    stackoverflow.com

I want to change the Locale depending of the user perferences. I used onInteractiveAuthenticationSuccessEvent :

onInteractiveAuthenticationSuccessEvent = {e, appCtx ->
   def autservice = appCtx.authenticateService
       ...

8. Using Grails Acegi Plugin when a User domains "enabled" field is set to false. The user can still login    stackoverflow.com

Is the disabling of users natively supported by the Acegi Grails plugin? From the Documentation it appears to support the "enabled" field.. But after setting the Users "enabled" field to false, the user ...