Session Timeout

Discussion in 'Site Programming, Development and Design' started by AndyK, Oct 24, 2010.

  1. I have just uploaded an app that works perfectly when running on my local machine. And everything appears to be working fine when I run it on the Winhost server, however, session only seems to last for about one minute. Then it redirects to the default page.

    I've increased the timeout setting in the web.config with no effect.

    Has anyone else had issues like this?
     
    Last edited by a moderator: Oct 14, 2015
  2. Ray

    Ray

    All the web servers have specific thresholds/conditions it must monitor for each application pool. If these thresholds are met, the system will recycle that application pool.

    1) More than 20 minutes of idle time (no http request in 20 minutes)
    2) The application uses more than 100 MB memory
    3) The application uses more than 75% of CPU time


    Have you considered going to a SQL session?

    http://support.Winhost.com/KB/a626/how-to-enable-aspnet-sql-server-session-on-your-web.aspx
     
    Last edited by a moderator: Oct 14, 2015
  3. That's actually 70% for 5 minutes.
     

Share This Page