IIS 5/6 request-handling

  • Thread starter Thread starter Marian Horniak
  • Start date Start date
M

Marian Horniak

hello to everyone,
please can you give me a link to example with request handling on IIS ver 5
and 6 ?
Main idea is : work with request from all clients complexly . (e.g. set
priority, canceling ...). If it's possible , for .NET languages .

thank you

regards
Maros
 
Marian,

You might want to look into implementing the IHttpHandler interface.
Once you have an implementation that does what you want, you can hook it up
in ASP.NET to certain requests (through the web.config file), and then do
what you want with those requests.

The only catch is that if you have it process requests for certain types
of files (jpg, etc, etc) that are not normally handled by ASP.NET, then you
have to change the ISAPI filter settings so that those file types are
processed by the ASP.NET dll.

Hope this helps.
 
Back
Top