I have created an asp.net webservice in c#.
Problem is the following. I am using ... Application[myVar] ... which provides me a global variable for all the users. To load the variable takes 1 min since it is quite big (2.2Gb).
Every 20 min it gets timedout and i would like to make it permanent or at least couple days to timeout. Is there a way to do that?
I have hard time to figure out where I set SessionTimeout and where ApplicationTime out (if it even exists).
I tried changing Web.Config:
<sessionState timeout="1000" />
And changing various timeouts in iis manager
Both with little success
Problem is the following. I am using ... Application[myVar] ... which provides me a global variable for all the users. To load the variable takes 1 min since it is quite big (2.2Gb).
Every 20 min it gets timedout and i would like to make it permanent or at least couple days to timeout. Is there a way to do that?
I have hard time to figure out where I set SessionTimeout and where ApplicationTime out (if it even exists).
I tried changing Web.Config:
<sessionState timeout="1000" />
And changing various timeouts in iis manager
Both with little success
Comment