Reputation: 688
I set the idleTimeout in processModel in applicationhost.config but it doesn't work.it seems follow the another property to abort the thread after a determined idle time .I think the idle time for this case is about 10 minutes. notice idleTime,session timeout and cookie timeout are changable for IIS as well but in this case iisexpress is matter for me. how can I do that for the iisexpress?
Upvotes: 1
Views: 1075
Reputation: 63123
IIS Express is a single process web server, so not all of application pool settings are not applicable to it. So if you want to test idleTimeout
, you have to be on full IIS.
Upvotes: 1