Re: Security in a Spring Wicket layered application

2009-04-06 Thread Eduardo Nunes
Are you using something else together with wicket-jsecurity? I saw the example in the svn and there is no annotation based authorization or something like this. How did you implement the authorization in your (big) application? Thanks, Eduardo S. Nunes On Tue, Mar 10, 2009 at 2:53 PM, Les

Re: Security in a Spring Wicket layered application

2009-03-12 Thread Kent Larsson
Hi Kai, I'm setting up auth roles, it's going pretty well. Altough I've had some problems when I followed http://cwiki.apache.org/WICKET/spring-security-and-wicket-auth-roles.html to the letter, it might be a typo in there or else it was me doing something wrong. Is there a home page for the

Re: Security in a Spring Wicket layered application

2009-03-12 Thread Kent Larsson
By looking at the source code it looked very nice (and you're right about complex, but of course you are doing lots of important things so it's hard not to have something complex) to me. You seem to be very knowledgable. I didn't get it working in Eclipse though. I did a svn co the trunk path you

Re: Security in a Spring Wicket layered application

2009-03-12 Thread Kent Larsson
Hi Les, After looking at the JUG JSecurity Presentation of jSecurity I'm certainly interested in the project. For my next project I'll have to look into jSecurity. Keep up the good work! Best regards, Kent On Tue, Mar 10, 2009 at 6:53 PM, Les Hazlewood lhazlew...@apache.org wrote: Hi Kent,

Re: Security in a Spring Wicket layered application

2009-03-12 Thread James Carman
Mr. Larsson, Thank you for your kind words and I'm sorry you had so much trouble getting the project to run. Those Sun licensing issues are annoying to all of us maven users. However, I would urge you to try running the project with either mvn jetty:run or using the Start class that's included

Re: Security in a Spring Wicket layered application

2009-03-10 Thread Kent Larsson
Integrating with jSecurity instead is really a last resort. If it is at all possible I wouldn't like to introduce more framework dependencies. That integration project seems a bit early to use as well, but it might be interesting in the future. Thanks for the link! Regarding Spring Security (SS).

Re: Security in a Spring Wicket layered application

2009-03-10 Thread Les Hazlewood
Hi Kent, Although it is early, I am using the wicket-jsecurity integration in one of my (big) projects. It is working pretty well. Feel free to ask questions - I'm happy to help along the way. Cheers, Les (JSecurity founder) On Tue, Mar 10, 2009 at 1:42 PM, Kent Larsson

Re: Security in a Spring Wicket layered application

2009-03-10 Thread James Carman
My wicket-advanced demo code integrates Spring Security and Wicket using wicket-auth-roles: http://svn.carmanconsulting.com/public/wicket-advanced/trunk/ The key is the SpringSecuritySession class:

RE: Security in a Spring Wicket layered application

2009-03-10 Thread Kai Mütz
Kent Larsson mailto:kent.lars...@gmail.com wrote: Integrating with jSecurity instead is really a last resort. If it is at all possible I wouldn't like to introduce more framework dependencies. That integration project seems a bit early to use as well, but it might be interesting in the future.

Re: Security in a Spring Wicket layered application

2009-03-09 Thread Kent Larsson
Hi, Great answer! :-) I'll try to do that today. Best regards, Kent On Sun, Mar 8, 2009 at 8:38 PM, Erik van Oosten e.vanoos...@grons.nl wrote: Hi Kent, Go with something that enables authorization in the service layer (e.g. Spring Security, jSecurity, ...). Next base your custom wicket

Re: Security in a Spring Wicket layered application

2009-03-09 Thread Kent Larsson
Hm, I had some problems. Are there any examples out there for this? On Mon, Mar 9, 2009 at 9:43 AM, Kent Larsson kent.lars...@gmail.com wrote: Hi, Great answer! :-) I'll try to do that today. Best regards, Kent On Sun, Mar 8, 2009 at 8:38 PM, Erik van Oosten e.vanoos...@grons.nl wrote:

Re: Security in a Spring Wicket layered application

2009-03-09 Thread Ryan McKinley
I have not used it (yet), but check: http://code.google.com/p/wicket-jsecurity/ On Mar 9, 2009, at 1:46 PM, Kent Larsson wrote: Hm, I had some problems. Are there any examples out there for this? On Mon, Mar 9, 2009 at 9:43 AM, Kent Larsson kent.lars...@gmail.com wrote: Hi, Great

Re: Security in a Spring Wicket layered application

2009-03-08 Thread Erik van Oosten
Hi Kent, Go with something that enables authorization in the service layer (e.g. Spring Security, jSecurity, ...). Next base your custom wicket authorization on the authentication store of the chosen base technology. Spring Security uses a thread local as authentication store and has a