vote up 0 vote down star

I'm writing a web application that will have "plugins". The plugins will be .DLL files which will export their functionality through predefined interfaces 'n stuff. All the .DLL files are in a folder called "Plugins", and the ASP.NET application loads them all upon startup (by using Assembly.LoadFrom).

The problem is that when developing, these plugins will change fairly often (all the functionality is in the plugins, the website itself is just a skeleton). Thus, I need a way to automatically restart the application when the .DLL files change.

How do I do that?

flag

44% accept rate
You know i'm not 100% sure but i'm under the impression if you change dll's at runtime IIS picks up on this and recycles the app domain and I think by default your new dll's will actually be reloaded and all sessions dropped etc. – Robert Dec 1 '08 at 10:01
Maybe if they were in the "bin" folder, I haven't tried that yet. But it doesn't give a damn about the "Plugins" folder. :P – Vilx- Dec 1 '08 at 10:02
oh i see, put the plugins folder in the bin folder – Robert Dec 1 '08 at 10:21

2 Answers

vote up 3 vote down check

IF the plugins directory is under your Bin directory, the web app will automatically be restarted when anything changes.

link|flag
It works, it works!!! – Vilx- Dec 1 '08 at 10:33
Cool :) Now if only you could have it working off other directories. – leppie Dec 1 '08 at 10:41
vote up 2 vote down

The FileSystemWatcher class is a general solution to these kind of problems, and HttpRuntime.UnloadAppDomain(); is one way to restart your app. I think more research/explanation is required: there are many possible solutions.

Edit: Probling Paths. Nice answer.

link|flag
Will HttpRuntime.UnloadAppDomain() actually start the app again on subsequent requests? – leppie Dec 1 '08 at 10:23
Yes, it will. Although THIS request will still get served with the old version. I'll see if I can couple it with the FileSystemWatcher. – Vilx- Dec 1 '08 at 10:29
Actually IIRC UnloadAppDomain will terminate the current request (not 100% though) but it does restart on the next request (100%) – annakata Dec 1 '08 at 11:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.