Re: GWT and Acegi

2010-03-20 Thread olivier nouguier
Hi, Called now Spring security now. The simplest integration is to secure the hosting page (before GWT). You could look http://code.google.com/p/orcades-gwt-spring/ to see how to integrate spring security in a GWT / MVP application and be able to secure at GWT-RPC level. HIH On Fri, Mar 19,

GWT and Acegi

2010-03-19 Thread Apolo
Hello, I've just started with GWT. I've started a project where it's needed an integration with Acegi Security. I really had no idea about Acegi and after reading the documentation and watch the examples i still don't get how to integrate with GWT. I've also checked

Re: GWT and Acegi

2010-03-19 Thread kriswpl
Hello, If you don;t know anything about Acegi... 1. Acegi was migrated to Spring Security (http:// static.springsource.org/spring-security/site/) 2. It can secure in two ways: a) web tier by url or b) methods in classes I use spring security and I like it, but it took some time to know what it

Re: gwt + spring acegi @Secured problem

2009-06-01 Thread sandro.he...@the-software.de
We did not use @Secured, but applicationContext.xml !-- SECUTRITY CONFIGURATION -- security:http auto-config='true' access-denied-page=/pub/ nopage.jsf security:intercept-url pattern=/pub/** filters=none / security:intercept-url pattern=/** access=ROLE_USER /

gwt + spring acegi @Secured problem

2009-05-30 Thread asianCoolz
I wonder any Gurus able to identify the problem . My method is annotated with @Secured but when each time my gwt client make a rpc request, i able to execute the method even though user not yet login in. the codes at http://forum.springsource.org/showthread.php?t=72734 very appreciated for your