Hi,
Will this work correctly in multiuser application where is necessary to keep session for each user?
Thanks.
Type: Posts; User: st0rm; Keyword(s):
Hi,
Will this work correctly in multiuser application where is necessary to keep session for each user?
Thanks.
Hi,
I have this question: is it possible to access HTTP request by encapsulated class with HttpInvokerServiceExporter?
Sample code:
<bean id="invokerService"...
Yes, the pointcut definition should be something like this:
@Pointcut("execution(@org.acegisecurity.annotation.Secured public * *(..))")
Thanks a lot for your help.
Hi,
secure bean's interface:
public interface BeanToSecure {
@Secured({"ROLE_USER"})
public void userOp(String arg0);
@Secured({"ROLE_ADMIN"})
Hi,
Thanks for reply. I've try to use the code above, but it doesn't work correctly.
Currently the configuration looks like:
<bean id="daoAuthenticationProvider"...
Hi,
Currently I'm playing with Acegi Security using @AspectJ. What I need is an aspect which will be called on methods annotated with @Secured annotation (defined by Acegi). I started my tries...