Re: Unmount an ASP.Net application
Brought to you by:
wrowe
From: William A. R. Jr. <wr...@ro...> - 2007-05-23 16:45:28
|
Simply do a graceful restart would be my suggestion. The original process would continue to serve out the last of its requests, and then stop. Provided you don't have clients during the restart hitting the application, you can then swap around the files. IIRC, renaming an open file is possible, in order to make room to install a new flavor. If you do this before the restart, upon restart the new process will definately pick up the modern version. If all you want to do is to unload a now-unused app, restarting is all that you need to do. Bill Nick Darnell wrote: > Is there a way at runtime to issue a command to Apache / mod_aspdotnet > to force the unloading of a particular web application? > > -Nick > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Mod-aspdotnet-users mailing list > Mod...@li... > https://lists.sourceforge.net/lists/listinfo/mod-aspdotnet-users |