asp.net - Visual Studio 2013 debug session stops 1 minute after logging in with AspNet Identity -
maybe answer trivial, couldn't find exact same behavior in other threads. have mvc 5 web application. implemented custom identity database asp.net identity 2 (owin). have external login (facebook, google...etc). login works fine. users got authenticated roles , everything.
after 1 minute of inactivity, visual studio 2013 debug session stops. application remains available (so iis app pool not stopped) recycles iis well.
i implemented logging in application_end global.asax method in order have shutdown reason, in these cases there no info in logs. in other cases, when app pool recycled due web.config change have info in logs.
i suspect timeout, have no clue kind of timeout be. should look?
thanks in advance.
open iis, find application's apppool, then:
- right click on app pool , select advanced settings
- under "process model" set
idle time-out (minutes)
0.
for reference, non-default (non-bold) settings in "process model" , "recycling" section are:
identity : networkservice idle time-out (minutes) : 0 ping enabled : false
and these settings, can start debugger , never seems automatically time out or recycle.
Comments
Post a Comment