Hi,
    I am having struts2 application with hibernate + mysql.I want to create
web app session Expired page,but i am not able to detect weather my
application session expired or not.

I have given session time out to 1 min also but it still displays active
session.
<session-config>
        <session-timeout>1</session-timeout>
</session-config>

My SessionChecking interceptor looks like:-

public class SessionExpired  implements Interceptor {
    public void destroy() {
        LOG.info("..............destroy");
    }

    public void init() {
        LOG.info("..............init");
        }
        
    public String intercept(ActionInvocation actionInvocation) throws
Exception {
        Map session = actionInvocation.getInvocationContext().getSession();
        if(session == null) {
             LOG.info("..............interce if");
        }
        else {
            LOG.info("..............interce else");
        }
        return actionInvocation.invoke();
    }
}

After 1..2...3...5 min it still logging ("..............interce else").

Do anyone know how can i detect my application session time out or not ?

Thanks & regards
jignesh
-- 
View this message in context: 
http://www.nabble.com/Struts2-sesionExpired-page-tp15328299p15328299.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to