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
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
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
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]>:
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
onProvider, @InjectService("LdapAuthenticationProvider")
AuthenticationProvider ldapAuthenticationProvider){
configuration.add("daoAuthenticationProvider",daoAuthenticationProvider);
configuration.add("ldapAuthenticationProvider",ldapAuthenticationProvider);
}
> -O
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
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