Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
14k views

Creating a custom authentication with Acegi/Spring Security

I'm having trouble discovering exactly what I need to implement in order to use a custom authentication method with my web application using Spring Security. I have a Grails application with the ...
13
votes
5answers
4k views

JAAS for human beings

I am having a hard time understanding JAAS. It all seems more complicated than it should be (especially the Sun tutorials). I need a simple tutorial or example on how to implement security ...
11
votes
3answers
907 views

A Guice-ready security framework?

Has anybody seen a framework which is either written to work with Guice or a library that integrates an existing security system (ie: Acegi) with Guice? I have found the following thus far... ...
5
votes
4answers
849 views

Grails security

Which is the best security solution for grails among acegi, jsecurity and Stark security? regards Josh
5
votes
1answer
1k views

Grails - Acegi: Customize Authentication Method

I want to change the authentication process that is used by the Acegi - Plugin. It should be a completly customized process. Cusotm login form + custom auth method. Obviously there is only few ...
4
votes
3answers
661 views

GWT Acegi alternative

I'm starting new project. The client interface is based on GWT (and GXT) I have no say it's predetermined. However I can pick and choose as far as server side so I can have some fun and hopefully ...
4
votes
3answers
10k views

Any good tutorials/examples for the Spring Security Framework?

Any good tutorials or samples on spring security. Thanks
3
votes
2answers
284 views

Spring Security UI and grails 2.0

I am not able to use grails security UI(0.1.2) with Grails 2.0. I have googled the possible causes for following error and also have tried suggested fixes but they don't seem to be working. I have ...
3
votes
0answers
190 views

Grails Acegi : Redirection on a ajax method and not on the webpage. Why?

I use Acegi with grails but I have a problem with a redirection. I define in UrlMapping this : "/" { controller = "mycontroller" action = "myaction" } In mycontroller : myaction = { if ...
3
votes
4answers
1k views

Security in Grails-app: Acegi or Shiro

i'm developing a Grails based web-application and i need to choose one of these two frameworks for authentication. In your opinion, what criterions favor the choice for Acegi and what criterions favor ...
3
votes
3answers
1k views

Grails Acegi plugin lost password

I'm looking for an implementation of a password retrieval procedure using the Acegi plugin for Grails...Google is failing me...
3
votes
1answer
814 views

spring security: what is the difference between account locked and not enabled

The UserDetails interface has two properties that seem to be the same, locked and enabled. Aren't these just the opposite one of the other?
3
votes
2answers
3k views

Spring security - SecurityContext.authentication null in taglib and jsp but ok in controller

I've been struggling with this issue for a little while now. Found several posts about it but none solved my problem. It will probably have something to do with the fact that a SecurityContext is boud ...
3
votes
6answers
2k views

Acegi/Spring Security Grails plug-in not seeing changes to a User instance

I am writing a web app in Grails with the Acegi/Spring Security plug-in, and am having trouble getting it to see changes I make to User instances. I have only been working with Groovy/Grails for about ...
3
votes
1answer
978 views

Spring Security: What is the UserDetailsManager interface used for? And more!

I'm curious about the UserDetailsManager interface. It's not mentioned in the reference guide and in the JavaDoc it's described as: An extension of the UserDetailsService which provides the ...
3
votes
3answers
3k views

Does Acegi/Spring security support getUserPrincipal()?

I need to interface an existing application with Acegi/Spring security. In order to get started I am looking for one simple piece of information: in this context, will ...
3
votes
2answers
4k views

Spring Security: How to get the initial target url

I am using the spring security to restricted urls. I am trying to provide signup and login page, on the same page. On login spring security transfers to the restricted page. However i am trying to ...
2
votes
3answers
347 views

request.getRemoteUser() sometimes returns null

I have a java-web-application using struts2 combined with old-style servlets. Using Acegi security. In my servlets, I'm logging what the user is trying to do and which user it is. To get the user im ...
2
votes
1answer
336 views

Grails Acegi security: Problem with roles and access

sad end to this story Well, as it turns out, the compareTo method in my Role class (Role implements GrantedAuthority) was returning always 0. So each user had only one role (since they are stored in ...
2
votes
0answers
169 views

Grails Acegi Url mapping weirdness

This is Grails 1.2.0 and Acegi 0.5.2. Part of my security config (the requestMapString): requestMapString = """\ CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON PATTERN_TYPE_APACHE_ANT ...
2
votes
2answers
2k views

how to configure session time out in spring acegi framework?

We are using acegi security for my spring application. Can you please help how to make user to session time out by 5 mins and go back to login screen? I tried to configure session-timeout in web.xml. ...
2
votes
2answers
225 views

Grails + Acegi: How to handle password renewal ? Logged vs not logged user

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 ...
2
votes
1answer
660 views

Trying to use Grails Spring Security Plugin + Facebook Connect to automatically create a user with default permissions on Authentication

I am working on an app that uses the Spring (Acegi) plugin for Grails. The plugin has facebook connect settings built in. I have followed the instructions to handle a facebook login within the ...
2
votes
0answers
297 views

How do I specify Open ID Realm in spring security?

We are using Spring security in our application with support for username / password based authentication as well as Open id based authentication. The issue is that google gives a different open id ...
2
votes
1answer
98 views

How to manually query LDAP through Acegi's beans?

I have an application using Acegi (earlier version of Spring Security) and LDAP for logins. Now, a specific scenario requires me to discover user's LDAP groups at arbitrary time (not at login time). ...
2
votes
1answer
322 views

Grails Acegi Plugin - how to update cache?

I'm having a problem with Acegi Plugin. The problem is that Acegi caches user info. If I update roles or password the change doesn't appear immediately. For a while I can even log out and log in with ...
2
votes
1answer
452 views

Traditional Auth, Facebook Connect & Grails

I am writing an app which needs to have both the traditional form of user auth, and Facebook Connect. I am using groovy/grails for this application. Grails luckily has JSecurity plugin, Acegi Plugin ...
2
votes
5answers
1k views

Grails with SpringSecurity, check if the current user can access controller / action

I'm currently developing a menu for my application that should be able to display only the controllers that the current user can access (requestmap defined in the database). How can I check if the ...
2
votes
3answers
587 views

Grails Security Problem and Search Engine optimization

I'm trying to build a control logic that depends on the current gsp page to call an action, is there a tag or a session method that i can use to identify the current gsp page I want to restrict ...
1
vote
1answer
70 views

Hibernate Caching Problem

I have been dealing with memory issues in my application and believe that I have finally nailed it down by profiling with Yourkit - I cache the User in the session, but each User that gets cached is ...
1
vote
1answer
67 views

Using Grails Acegi Plugin when a User domains “enabled” field is set to false. The user can still login

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 ...
1
vote
2answers
550 views

Why can't i login with spring security and weceem plugin installed in grails framework 1.3.7

I'm working on a nearly clean grails 1.3.7 project with weceem 1.0RC2, spring-security-core 1.1.3, spring-security-ui 0.1.2, weceem-spring-security 1.0 and their dependencies installed. Everything ...
1
vote
1answer
206 views

Grails, upgrading from Acegi to Spring security plugin

Yesterday I started upgrading our Grails app from Acegi plugin 0.5.2 to the Spring security plugin. I'm running into a few issues, maybe anyone can help here? After making the necessary changes (as ...
1
vote
0answers
106 views

Using UserNameResolver in Jenkins / Hudson

I'm trying to write a plugin that provides users' real name and email addresses from the data in our Active Directory. We use the ActiveDirectory plugin for authentication, which does not set these ...
1
vote
0answers
273 views

Spring Security And Jackrabbit Example Code

I am looking for an example where Spring Security and Apache Jackrabbit are working together. I want to use Spring Security but Apache Jackrabbit uses JAAS. So if somebody can guide me how to do this ...
1
vote
2answers
105 views

GWT + Acegi implementation

I want to implement acegi security authorization in my GWT project. I am not able to do it properly. Can any one help thoroughly? Thanks..
1
vote
2answers
103 views

ACEGI Tag to Access Currently Logged In User Object

I have a legacy java webapp which uses Acegi Security. I am trying to remove all java scriplets from jsp pages. Is there any ACEGI tag which could be used to replace the following expression: ...
1
vote
1answer
103 views

acegi security - targetURL keeping “#xxx”

Just a quick question that I am having trouble phrasing well enough to google sucessfully. Is is possible in acegi security + Spring to keep the "full" targetURL post login? i.e. if a user tries to ...
1
vote
2answers
202 views

grails Acegi: How to check for expired password

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 ...
1
vote
1answer
79 views

Django integration with Acegi

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 ...
1
vote
0answers
370 views

Grails Spring Security (Acegi) plugin intercept login to inject custom Facebook Connect logic

Ok, second try here.. hoping I phrase my question better to get a few responses. I am currently working on a small project developed in Grails with the Spring Security plugin to handle account ...
1
vote
1answer
174 views

[Spring-Flex][ACEGI] Error or no security

As I say in the title of my question, I don't succeed in configuring Spring Security... I've followed two articles written by James Ward or Jettro Coenradie but I still don't have it ! First I tried ...
1
vote
1answer
950 views

Spring Security (Acegi) and user Groups (vs. Roles)

We're developing an app (using Grails Spring Security (formerly Acegi)) in which we'll have thousands of users that span 10-15 discreet user types. In the current system, each user type equates to a ...
1
vote
2answers
157 views

Grails - access only for object's owner

I'm still working on my first Grails application. This time, my problem is to limit access to some actions for particular users. Assume users add some object, e.g. books. I would like to give access ...
1
vote
2answers
117 views

Configuring acegi security to store successful logins to DB

I'm new to Acegi. I have it working in its simplest form. I have to login in order to access the protected pages (I followed their tutorial). Now I want to have a DB Log of every successful login. Is ...
1
vote
2answers
2k views

How To Save Spring Security Logged In User In Session

This code get's the currently logged in user, using the Spring Security Plugin (acegi): def principalInfo = authenticateService.principal() def person = null if (principalInfo != "anonymousUser" ...
1
vote
0answers
54 views

update on acegi roles for user?

If a loggedin user gets a new role, what does he has to do to get all permissions based on this role? logout and login again does not work reassign the roles with an admin-account works Do i have ...
1
vote
1answer
493 views

Sharing session (or cookie) using Grails acegi plugin

Is it possible for two different Grails project, also having different domains, to share a session/cookie? Let's say I have 2 sites: www.mycompany.com, and, www.othercompany.com. Assume that both ...
1
vote
1answer
988 views

Auto-creating User details with Grails and LDAP

I'm using the Acegi Security plugin for Grails, and authentication via LDAP. The application logs show that on login, we can authenticate the user and get their roles via LDAP, but the login fails ...
1
vote
1answer
469 views

PartialResultException when authenticating over LDAP with Acegi and Grails

I'm trying to setup our new Grails application to authenticate via LDAP. From the logs we can see that Acegi is binding to the LDAP store, then is able to find the user given the correct credentials, ...

1 2 3