|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
vlink="#000080" alink="#FF0000">
Apache HTTP Server Version 1.3Module mod_isapiThis module supports ISAPI Extensions within Apache for Windows. Status: Base SummaryThis module implements the Internet Server extension API. It allows Internet Server extensions (e.g. ISAPI .dll modules) to be served by Apache for Windows, subject to the noted restrictions. ISAPI extension modules (.dll files) are written by third parties. The Apache Group does not author these modules, so we provide no support for them. Please contact the ISAPI's author directly if you are experiencing problems running their ISAPI extention. Please do not post such problems to Apache's lists or bug reporting pages. DirectivesUsageIn the server configuration file, use the AddHandler
directive to associate ISAPI files with the
AddHandler isapi-isa .dll ISAPI extensions are governed by the same permissions and
restrictions as CGI scripts. That is, Review the Additional Notes and the Programmer's Journal for additional details and clarification of the specific ISAPI support offered by mod_isapi. Additional NotesApache's ISAPI implementation conforms to all of the ISAPI
2.0 specification, except for the "Microsoft-specific"
extensions dealing with asynchronous I/O. Apache's I/O model
does not allow asynchronous reading and writing in a manner
that the ISAPI could access. If an ISA tries to access
unsupported features, including async I/O, a message is placed
in the error log to help with debugging. Since these messages
can become a flood, a new directive; Some servers, like Microsoft IIS, load the ISA into the server, and keep it loaded until memory usage is too high, or specific configuration options are used. Apache currently loads and unloads the ISA for each request. This is inefficient, but Apache's request model makes this method the only method that currently works. Apache 2.0 is expected to support more effective loading and caching methods, with more precise control over individual ISAPI modules and directories. Also, remember that while Apache supports ISAPI Extensions, it does not support ISAPI Filters. Support for filters may be added at a later date, but no support is planned at this time. Programmer's JournalIf you are programming Apache 1.3 mod_isapi modules, you must limit your calls to ServerSupportFunction to the following directives:
Apache returns FALSE to any unsupported call to ServerSupportFunction, and sets the GetLastError value to ERROR_INVALID_PARAMETER. Prior to Apache 1.3.13, ReadClient was a noop, and any request with a request body greater than 48kb was rejected by mod_isapi. As of Apache 1.3.13, ReadClient now retrieves the request body exceeding the initial buffer (defined by ISAPIReadAheadBuffer). Based on the ISAPIReadAheadBuffer setting (number of bytes to buffer prior to calling the ISAPI handler) shorter requests are sent complete to the extension when it is invoked. If the request is longer, the ISAPI extension must use ReadClient to retrieve the remaining request body. WriteClient is supported, but only with the HSE_IO_SYNC flag or no option flag (value of 0). Any other WriteClient request will be rejected with a return value of FALSE, and a GetLastError value of ERROR_INVALID_PARAMETER. GetServerVariable is supported, although extended server variables do not exist (as defined by other servers.) All the usual Apache CGI environment variables are available from GetServerVariable. As of Apache 1.3.13, the ALL_HTTP and ALL_RAW and variables are now available. Apache 2.0 mod_isapi may support additional features introduced in later versions of the ISAPI specification, as well as limited emulation of async I/O and the TransmitFile semantics. Apache 2.0 may also support caching of ISAPI .dlls for performance. No further enhancements to the Apache 1.3 mod_isapi features are anticipated. ISAPIReadAheadBuffer directiveSyntax: ISAPIReadAheadBuffer sizeDefault: 49152 Context: server config Override: None Status: Base Module: mod_isapi Compatibility: Apache 1.3.13 and later, Win32 only Defines the maximum size of the Read Ahead Buffer sent to ISAPI extentions when they are initally invoked. All remaining data must be retrieved using the ReadClient callback; some ISAPI extensions may not support the ReadClient function. Refer questions to the ISAPI extention's author. ISAPILogNotSupported directiveSyntax: ISAPILogNotSupported on|offDefault: on Context: server config Override: None Status: Base Module: mod_isapi Compatibility: Apache 1.3.13 and later, Win32 only Logs all requests for unsupported features from ISAPI extentions in the server error log. While this should be turned off once all desired ISAPI modules are functioning, it defaults to on to help administrators track down problems. ISAPIAppendLogToErrors directiveSyntax: ISAPIAppendLogToErrors on|offDefault: off Context: server config Override: None Status: Base Module: mod_isapi Compatibility: Apache 1.3.13 and later, Win32 only Record HSE_APPEND_LOG_PARAMETER requests from ISAPI extentions to the server error log. ISAPIAppendLogToQuery directiveSyntax: ISAPIAppendLogToQuery on|offDefault: off Context: server config Override: None Status: Base Module: mod_isapi Compatibility: Apache 1.3.13 and later, Win32 only Record HSE_APPEND_LOG_PARAMETER requests from ISAPI extentions to the query field (appended to the CustomLog %q component).
Apache HTTP Server Version 1.3 |