How to resolve session timeout issue in JAVA
How to fixed Session timeout issue :- Pls follow the below details............................. SessionTimeOut.jsp --------------------------------- <%@page import="com.ecw.security.DataValidation"%> <%@page import="com.ecw.components.PerformanceHelper"%> <% String sessionValueinSeconds = PerformanceHelper.checkItemkeyCache(null, "sessionTimeOut"); %> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <body> <script src="../../script/newui/js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function() { /* session Timeout code End Pavan */ var timer = null; var secondsBeforeExpire='<%=DataValidation.escapeStringForJavaScript(sessionValueinSeconds)%>'; if(secondsBeforeExpire!="") { v...
Comments
Post a Comment