ISAPI (Internet Server Application
Program Interface) is a set of Windows program calls that let you write a Web
server application that will run faster than a common gateway interface (CGI)
application. A disadvantage of a CGI application (or "executable
file," as it is sometimes called) is that each time it is run, it runs as
a separate process with its own address space, resulting in extra instructions that have
to be performed, especially if many instances of it are running on behalf of
users.
Using ISAPI, you create a
dynamic link library (DLL) application file that can run as part of the
Hypertext Transport Protocol (HTTP) application's process and address space.
The DLL files are loaded into the computer when HTTP is started and remain
there as long as they are needed; they don't have to be located and read into
storage as frequently as a CGI application.
A special kind of ISAPI DLL is called an ISAPI filter, which can be designated to
receive control for every HTTP request. You can create an ISAPI filter for
encryption or decryption, for logging, for request screening, or for other
purposes.
C:\Windows\Microsoft.NET\Framework\v4.0.30319\\aspnet_filter.dll’ could
not be loaded due to a configuration problem
How to install ISAPI Filter and Extension:-
WINDOWS SERVER 2008 OR WINDOWS
SERVER 2008 R2
1.
On the taskbar, click Start, point to Administrative Tools, and then click Server Manager.
2.
In the Server Manager hierarchy pane, expand Roles, and then click Web Server (IIS).
3.
In the Web Server (IIS) pane, scroll to the Role Services section,
and then click Add Role Services.
4.
On the Select Role Services page of the Add Role Services Wizard, select ISAPI Filters, and then click Next.
5.
On the Confirm Installation Selections page, click Install.
6.
On the Results page, click Close.
No comments:
Post a Comment