Session timeout

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).
 
S

Steve Caliendo

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top