Session timeout

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two web server hosting the same web service, one is windows 2003 server with IIS 6.0 and XP with IIS 5.1
In web.config, I changed timeout from 20 to 600 like below
<sessionState
mode="InProc
stateConnectionString="tcpip=127.0.0.1:42424
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes
cookieless="false"
timeout="600"
/
It looks like the windows 2003 server (IIS 6) server never took the new timeout value. The session on a web page still expires in 20 min.
however, it does work on XP (IIS 5.1), the session will be kept longer
Anyone know what causes the problem on windows 2003 (IIS 6).
 
Just a guess - Try restarting IIS.

Steve

James said:
I have two web server hosting the same web service, one is windows 2003
server with IIS 6.0 and XP with IIS 5.1.
In web.config, I changed timeout from 20 to 600 like below:
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="600"
/>
It looks like the windows 2003 server (IIS 6) server never took the new
timeout value. The session on a web page still expires in 20 min.
 
Back
Top