I would like to know if we could develop ISAPI filter in .NET. I have a filter that was originally developed in c++, i would like to port it to .net. Can you please let me know on how to go about doing it.
Hello. Seems kind of risky to do this, I think. Simple filters written in C where you have a rough idea how long everything takes, and what memory consumption you have is risky too, but I wouldn't do this in managed code. You might argue that all the functionality you use are using the .NET Framework, anyway, well I found this:
Developing ISAPI Filter in .NET
John Fly
Seems kind of risky to do this, I think. Simple filters written in C where you have a rough idea how long everything takes, and what memory consumption you have is risky too, but I wouldn't do this in managed code.
You might argue that all the functionality you use are using the .NET Framework, anyway, well I found this:
Filtering HTTP Requests with .NET
http://www.ondotnet.com/pub/a/dotnet/2003/10/20/httpfilter.html
(I haven't actually read it)
Don't know your scenario, but you might consider HttpListener (HTTP.SYS for .NET 2.0), if not because of anything else, because it is exciting.
Hope I was to any help
Gorm Braarvig