Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

IHttpHandler with .Net 6/7 and IIS

We have a custom IHttpHandler that is responsible for the incomming request in IIS.
we have override

public interface IHttpHandler
{
    bool IsReusable { get; }
    void ProcessRequest(HttpContext context);
}

We want upgrade with .net 6 or 7 but the namespace System.Web.IHttpHandler doesn’t exist and
how install .net 6 or 7 under IIS ?

What’s the best way ?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

If your goal is to extend IIS functionality, then you have to stay on .NET Framework.

ASP.NET Core middleware is a different approach and not tightly integrated with IIS pipeline.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading