Re: T5: Problems with Tapestry5-Acegi

2008-03-29 Thread Robin Helgelin
On Thu, Mar 27, 2008 at 7:34 PM, Jonathan Barker <[EMAIL PROTECTED]> wrote: > > This is currently listed on the TODO list: > > http://www.localhost.nu/java/tapestry5-acegi/todo.html There is initial support for secure methods in 1.0.4-SNAPSHOT available from http://www.localhost.nu/java/mvn-snap

RE: T5: Problems with Tapestry5-Acegi

2008-03-27 Thread Jonathan Barker
This is currently listed on the TODO list: http://www.localhost.nu/java/tapestry5-acegi/todo.html > -Original Message- > From: Jacob Bergoo [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 27, 2008 11:04 AM > To: users@tapestry.apache.org > Subject: Re: T5: Problems

Re: T5: Problems with Tapestry5-Acegi

2008-03-27 Thread Jacob Bergoo
Olle Hallin wrote: > > Add spring-web.jar or spring-webmvc.jar to your classpath. > > (Which one depends on which Spring version you use. > RequestUtils moved from spring-web.jar to spring-webmvc.jar in version > 2.5) > > > tapestry5-acegi does not bring it in automatically. > > HTH, > Olle

Re: T5: Problems with Tapestry5-Acegi

2008-03-27 Thread Olle Hallin
Add spring-web.jar or spring-webmvc.jar to your classpath. (Which one depends on which Spring version you use. RequestUtils moved from spring-web.jar to spring-webmvc.jar in version 2.5) tapestry5-acegi does not bring it in automatically. HTH, Olle 2008/3/27, Jacob Bergoo <[EMAIL PROTECTED]>:

RE: T5: Problems with Tapestry5-Acegi

2008-03-26 Thread Jacob Bergoo
Hi again, thanks to your advice I have manage to come a few steps closer to a working solution. But now I get this exception: [WARN] ServletHandler Error for /j_acegi_security_check java.lang.NoClassDefFoundError: org/springframework/web/bind/RequestUtils at org.acegisecurity.ui.rememberm

RE: T5: Problems with Tapestry5-Acegi

2008-03-24 Thread Jonathan Barker
onProvider, @InjectService("LdapAuthenticationProvider") AuthenticationProvider ldapAuthenticationProvider){ configuration.add("daoAuthenticationProvider",daoAuthenticationProvider); configuration.add("ldapAuthenticationProvider",ldapAuthenticationProvider); } > -O

RE: T5: Problems with Tapestry5-Acegi

2008-03-24 Thread Jacob Bergoo
Thanks Jonathan for your quick answer... accually I am Using T5, Spring 2.5.1, Hibernate 3.2 so I am looking for a solution where I can Use the Acegi for the security and using the @Secure annotation for pages/methos... I have seen another wiki page that shows on how to set up the Acegi to work wi

RE: T5: Problems with Tapestry5-Acegi

2008-03-24 Thread Jonathan Barker
The Tapestry5-Acegi project is set up to use Hibernate (hence the Session). Tapestry-ioc is trying to inject the Session, but apparently you don't have a Session service available. Do you want to use a Hibernate-based DAO for authentication? Consider using the tapestry-hibernate package. Jonatha