Hi all,
How can I to set a timeout with acegi security?
Thanks
Pasquy
Type: Posts; User: pasquy; Keyword(s):
Hi all,
How can I to set a timeout with acegi security?
Thanks
Pasquy
Thank you, it's work. My exceptionMappings is:
<property name="exceptionMappings">
<props>
<prop key="org.acegisecurity.BadCredentialsException">/loginFailed.jsp?e=1</prop>
...
I add in my dispatcher-servlet.xml a exceptionMappings, for example:
<bean id="formAuthenticationProcessingFilter"
class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilter">...
Can you post me a little configuration example because I'm new with acegi and spring.
Hi all,
I'm using acegi for my webapp authentication. Now I have this configuration:
<bean id="exceptionTranslationFilter"
class="org.acegisecurity.ui.ExceptionTranslationFilter">
<property...
Hi all, I have a little problem with binding spring.
I have a bean AddExameForm with this parameters:
private String esame;
private String descrizione;
private List<Domanda> domande;
and...
It's works! Thanks michael.
Ok, I have a header.jsp file under WEB-INF/jsp/secure/admin/
<%@ taglib uri="....org/spring" prefix="spring" %>
<%@ include file="/WEB-INF/jsp/secure/admin/include.jsp"%>
<html>
<head>...
I'm using acegi-security-1.0.0-RC2 that it is used in example!
(search SpringAcegiTutorial.zip on google page - now I cannot post this url).
In my app, the image folder is not under WEB-INF...
Hi all,
I'm new in this forum and now I want to use spring.
I see on net a spring example with acegi security, and I want to edit the example : SpringAcegiTutorial.
This example works, but I...