vote up 0 vote down star

I have statiс files in website folder, but need to check permissions for every file. I decided to use HttpModule for that purposes.

ASP.NET receives all the http-requests (I used wildcard mapping) and

The algorith is the following:

  1. HttpModule receives the request
  2. HttpModule checks permissions
  3. If access is denied then the answer is "Forbidden". If all is OK then httpModule's method just returns.
  4. DefaultHttpHandler is automatically used to process request for static files

The problem is that DefaultHttpHandler is not effective enough (it doesn't use file cache, etc.). But IIS (without ASP.NET) works with static files in a very good way.

All I want is to let IIS serve static files after my checks. Is there any way to implement it?

flag

1 Answer

vote up 1 vote down

If you're using IIS7 then yes, it's quite easy. In the integrated mode, all requests go through the managed pipeline. Let IIS serve the files, but add a HttpHandler to do the checks. Or you can use one of the authorization methods that ASP.NET offers.

link|flag
If you're using IIS6, I'd love to see a solution that doesn't involved checking rights, then streaming the file. – ScottE Jun 13 at 12:46
I hope I never have to deal with IIS6 in new projects again ;) – chris166 Jun 13 at 13:02
Unfortunately I use IIS6 – murad Jun 13 at 19:35

Your Answer

Get an OpenID
or

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