The Internet Server Application Programming Interface (ISAPI) is an N-tier API of Internet Information Services (IIS).
Questions tagged [isapi]
410 questions
0
votes
1 answer
IIS 7 ISAPI Handler Mapping Caching
I have a question for ISAPI Handler Mapping in IIS 7.
I added a Mapping and i would like to know, how i can configure the Server to cache the whole thing.
My web.config looks like this:
…

Spinnenzunge
- 55
- 1
- 8
0
votes
1 answer
PHP on IIS 6 as ISAPI, which process isolation mode?
We have IIS 6 server with many php applications. PHP 5.2 runs as ISAPI modul and IIS is set to IIS 5.0 Isolation Mode.
Now I want to switch to FastCGI and enable application pools, with needs to release IIS 5.0 Isolation Mode and use Worker Process…

Fanda
- 3,760
- 5
- 37
- 56
0
votes
1 answer
ISAPI Extensions: What is the difference between TerminateExtension and the extensions destructor?
Is there a difference between TerminateExtension() and the extensions destructor? Obviously both are used to cleanup resources but what kind of cleanup should be in one function and not the other?

theycallmemorty
- 12,515
- 14
- 51
- 71
0
votes
1 answer
URL rewrite redirect issue
I rewrite all URLs to lowercase, and it works fine.
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) $1 [CL,R=301]
But there are few places where IDs used and IDs transform to this:
Original URI pattern (spaces are added to highlight…

Ruslan Osipov
- 5,655
- 4
- 29
- 44
-2
votes
2 answers
Images do not appear with URL Rewrite
I wrote a rule for URL Rewrite and it works fine, but after I put it in place, the images in the pages no longer appear.

Cassini
- 119
- 1
- 13