HTTPModule and ISAPI

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have setup a Sharepoint 2003 server which has an ISAPi filter installed,
now I want to develop a HTTPModule which needs to run before the ISAPI
filter. So my question is, if a HTTPModule and an ISAPI filter are installed
on the same web virtual directory, which one will process first?

Thanks in advance.
 
hi,
as far as i know, the ISAPI filter will always run before any .Net
HttpModules defined in your web.config.
this is because .Net doesn't even come into play until IIS has handed over
the request to it, after running the ISAPI filters installed on the web
site, and all the other IIS functions, authentication etc.

hope this helps
tim
 
Back
Top