Whats happens if I overlay mywebapp.dll in iis 6.0 with a newer 1.1 version
without stopping the site. What happens to the users currently logged in?
Thanks.
Juan T. Llibre - 29 Oct 2007 17:36 GMT
re:
!> Whats happens if I overlay mywebapp.dll in iis 6.0 with a newer 1.1 version
!> without stopping the site. What happens to the users currently logged in?
They will continue to have their requests served by the "old" ASP.NET process.
New requests will be served by the new process.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
> Whats happens if I overlay mywebapp.dll in iis 6.0 with a newer 1.1 version without stopping the site. What happens to
> the users currently logged in? Thanks.
Peter Bromberg [C# MVP] - 29 Oct 2007 17:38 GMT
Your application will recycle because of the change. Existing requests will
complete, and sessions, if inProc, will be lost.
-- Peter
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
> Whats happens if I overlay mywebapp.dll in iis 6.0 with a newer 1.1 version
> without stopping the site. What happens to the users currently logged in?
> Thanks.