Problem with Application object

Discussion in 'Site Programming, Development and Design' started by dkorma, Apr 7, 2010.

  1. Hello,

    I'm trying to get use of the Application object in order to create a "persistent" web service connection (as described here: http://www.codeproject.com/KB/XML/PersistentWebService.aspx) The script is working fine on my localhost, but when uploaded to Winhost, does nothing (web service works fine, but the data stored in Application object gets lost).

    Thanks for your help
     
    Last edited by a moderator: Oct 14, 2015
  2. Ray

    Ray

    We host each website in its own unique application pool / process. To conserve memory, we recycle the application if any of the following condition is met

    1) More than 20 minutes of idle time (no http request in 20 minutes)
    2) The application uses more than 100 MB memory for the basic plan & 200 MB memory for the Max plan.
    3) The application uses more than 75% of CPU time
     

Share This Page