Re: User management in GWT

2010-07-06 Thread Carl Pritchett
Ben Alex did a wonderful presentation in Sweden http://vimeo.com/12641333 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email

Re: User management in GWT

2010-07-04 Thread Paul Schwarz
Acegi is now called Spring Security, and with that they have greatly reduced the xml configuration files required get started. Other great features: - annotations, so you have per-method authorisation if you like - ubiquitous security, so you define once and it's applied everywhere, as opposed to

Re: User management in GWT

2010-07-04 Thread jocke eriksson
If you will deploy to a servlet container, have a look on the security it has to offer. Then solve the problem at the client side. 2010/7/2 Paul Schwarz paulsschw...@gmail.com Acegi is now called Spring Security, and with that they have greatly reduced the xml configuration files required get

User management in GWT

2010-07-02 Thread sbrombo
Hi everyone, *Really short version*: I'd like suggestions on possible libraries/ projects to provide/develop the user registration/login/sessions within a GWT site. Off-the-shelf solutions are ok, too. Now some more details about my project: I'm a novice GWT user currently in the preliminary

Re: User management in GWT

2010-07-02 Thread Jim
Hi M. I'm also here checking out GWT and I believe I may have tested something that may help you. I think it was while I was running some of the examples in the GWT section of What's Coming in 2.1 using the MVP Framework. In this section there's a link to Spring Roo

Re: User management in GWT

2010-07-02 Thread Jim
Hi M. Yes ... I just checked to see if I could find that demo. Here is the one to use: vote.roo: The Voting sample script was built live on-stage during SpringOne Europe 2009, as detailed in the project history section. This is nice sample script because it's quite small and only has two

Re: User management in GWT

2010-07-02 Thread Nicolas ANTONIAZZI
What is the problem with Shiro ? I am using it for security management with my application and we did not have encountered any problem with its integration. It was only few lines of code : public void login(String username, String password) { Subject currentUser = SecurityUtils.getSubject();