I'd also be interested in knowing how to do this programmatically. I have this working in my login scenario through:
protected final UserDetails retrieveUser(String username,...
Type: Posts; User: danieljsanders; Keyword(s):
I'd also be interested in knowing how to do this programmatically. I have this working in my login scenario through:
protected final UserDetails retrieveUser(String username,...
Thanks Karl. I do have the following in the Acegi config file, i'm not entirely clear on what i've done wrong here...
<bean id="filterChainProxy" class="org.acegisecurity.util.FilterChainProxy">...
Hi again Karl,
Well I started looking thru the Acegi source code and then decided to try this in my controller:
request.getSession().setAttribute("ACEGI_SECURITY_CONTEXT", context);
...and...
Hi Karl, thanks.
>>Is the email address used at the username?
Yes.
Hi all (first post),
Sorry if this is a rehash of a common issue but i'm not finding any good answers in the archives.
I've got a Hibernate/Spring/SpringMVC setup using Acegi for...