0 Replies Latest reply on Jan 26, 2007 2:47 AM by muni78

    Session timeout during method execution

    muni78

      Hi,
      I have a little complicated issue with HttpSession timeout process. It goes like this.

      Lets says, my Web Application session timeout period is 5 minutes.
      I made a Http request to server and corresponding Servlet requires more than 5 minutes lets say 10 minutes to complete the business logic.

      As we can see in the above case, Session is invalidated before end of business logic execution in Servlet.

      I've tried following code to work around the problem but seems to be no luck

      Before executing the business logic in a method

      int timeoutBackup = session.getMaxInactiveInterval(); (5 minutes)
      session.setMaxInactiveInterval(-1);

      Business Logic.... (10 minutes)

      session.setMaxInactiveInterval( timeoutBackup ); ( 5 minutes )
      return;

      If i make the next request on same session, I get session invalid exception..
      I'm wondering what am i doing wrong here..

      Hope you guys can throw some light on what I'm doing wrong

      Best Regards,