vote up 6 vote down star
5

I'm writing an app where 3rd party vendors can write plugin DLLs and drop them into the web app's bin directory. I want the ability for these plugins to be able to register their own HttpModules if necessary.

Is there anyway that I can add or remove HttpModules from and to the pipeline at runtime without having a corresponding entry in the Web.Config, or do I have to programmatically edit the Web.Config when adding / removing modules? I know that either way is going to cause an AppDomain restart but I'd rather be able to do it in code than having to fudge the web.config to achieve the same effect.

flag

2 Answers

vote up 11 vote down check

It has to be done at just the right time in the HttpApplication life cycle which is when the HttpApplication object initializes (multiple times, once for each instance of HttpApplication). The only method where this works correct is HttpApplication Init().

To hook up a module via code you can run code like the following instead of the HttpModule definition in web.config:

  public class Global : System.Web.HttpApplication
  {
     public static xrnsToashxMappingModule Module = new xrnsToashxMappingModule();
     public override void Init()
     {
         base.Init();
         Module.Init(this);
     }
  }

All you do is override the HttpApplication's Init() method and then access the static instance's Init method. Init() of the module hooks up the event and off you go.

Via Rick Strahl's blog

link|flag
One of the modules we are using is working correctly when referenced from web.config, but can't be instantiated directly (as shown in your code) because it's declared friend. Any idea of which context should I instantiate it from? – Patonza Dec 1 at 11:20
vote up 0 vote down

AFAIK you can do it only via the web.config. However, it is pretty easy to use XML to edit the web.config from code.

link|flag
Yes but I was hoping there would be a less Benny Hill method of doing this. – jmcd Oct 27 '08 at 13:23

Your Answer

Get an OpenID
or

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