ISAPI Authentication in asp.Net
-
-
Hello everybody, Can anybody help me how can I implement ISAPI Authentication in my application using C#.Net? Are Form Authentication and ISAPI Authentication one and same? Anticipating for your answers!!! Thank You... -Saranya Balasubramanian
ISAPI is Internet Server Application Programming Interface.
Saranya B wrote:
Are Form Authentication and ISAPI Authentication one and same?
I think both are different. ISAPI authentication is used in the IIS. Basically they are programs (non cgi executables ) written to interact with the webserver requests. There are basically 2 types of ISAPI programs. Extensions and filters. ISAPI filters can modify incoming and outgoing requests. Main problem for this method is, it can stop your webserver from working once this programs got crashed.
Saranya B wrote:
can I implement ISAPI Authentication in my application using C#.Net
I am not sure regarding this. I think it is done at the end of IIS. Could you tell me why you are so specific on using this method ?
Navaneeth My Website
-
ISAPI is Internet Server Application Programming Interface.
Saranya B wrote:
Are Form Authentication and ISAPI Authentication one and same?
I think both are different. ISAPI authentication is used in the IIS. Basically they are programs (non cgi executables ) written to interact with the webserver requests. There are basically 2 types of ISAPI programs. Extensions and filters. ISAPI filters can modify incoming and outgoing requests. Main problem for this method is, it can stop your webserver from working once this programs got crashed.
Saranya B wrote:
can I implement ISAPI Authentication in my application using C#.Net
I am not sure regarding this. I think it is done at the end of IIS. Could you tell me why you are so specific on using this method ?
Navaneeth My Website