Http handler for classic ASP application for introducing a layer between client and server

Posted by JPReddy on Programmers See other posts from Programmers or by JPReddy
Published on 2012-06-24T22:33:19Z Indexed on 2012/06/25 3:22 UTC
Read the original article Hit count: 231

Filed under:
|
|

I've a huge classic ASP application where in thousands of users manage their company/business data. Currently this is not multi-user so that application users can create users and authorize them to access certain areas in the system.

I'm thinking of writing a handler which will act as middle man between client and server and go through every request and find out who the user is and whether he is authorized to access the data he is trying to.

For the moment ignore about the part how I'm going to check the authorization and all that stuff. Just want to know whether I can implement a ASP.net handler and use it as middle man for the requests coming for a asp website? I just want to read the url and see what is the page user is trying to access and what are the parameters he is passing in the url the posted data. Is this possible? I read that Asp.net handler cannot be used with asp website and I need to use isapi filter or extensions for that and that can be developed only c/c++.

Can anybody through some light on this and guide me whether I'm in the right direction or not?

© Programmers or respective owner

Related posts about websites

Related posts about http-request