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
RewriteEngine off; does ErrorDocument still work?
I'm writing an ISAPI filter for the IIS7 that should map some functionalities of the Apache Mod_Rewrite. The whole rewriting is finished and I now want to implement the ErrorDocument directive.
When I do have RewriteEngine off the rewriting is…

Simon Linder
- 3,378
- 4
- 32
- 49
0
votes
2 answers
In IIS6, how to provide authenticated access to static files on remote server
We have a library of ZIP files that we would like to make available for download at an ASP.NET site.
The files are sitting on a NAS device that is accessible from out web farm.
Here is our initial strategy:
Map an IIS virtual directory to the…

frankadelic
- 20,543
- 37
- 111
- 164
0
votes
1 answer
Isapi additional url variables
i wish to add more url variables to my url... whatever there is after ? i wish to retrieve it as a urls variable Thank YOU!
RewriteRule ^(.*).html?(.*)$ products.cfm?categ=$1&urls=$2 [NC,L]
RewriteRule ^products.cfm?categ=(.*)&urls=(.*)$…

Cupcake
- 69
- 5
0
votes
1 answer
ISAPI_Rewrite and Coldfusion Rules
This is the first time that I am trying to use ISAPI_Rewrite and ColdFusion. My hosting company has a wiki which says I need to create an .htaccess file and add the following rules to it:
RewriteEngine on
RewriteRule…

johnnyc0506
- 133
- 1
- 3
- 12
0
votes
0 answers
Helicon isapi rewrite 3 redirectcondition fails
We have a url that makes use of a rewritemap to retrieve a parameter for the querystring in order to get the right themepage. This works wel and it shows the right themepage in the default language.
If a user wants to change the language of this…

user1773455
- 21
- 2
0
votes
0 answers
Reset all HttpApplication instances
I have defined and assigned HTTP module with data that are initialized once, when module was created.
During the work of asp.net application I would like to say - Reset this data on all instances of that module type.
As you know there is…

Rastko
- 890
- 1
- 17
- 32
0
votes
1 answer
IIS7 - asp app + anonymous auth + isapi filter - how to force non IUSR identity
I have a classic ASP app that I want to run under specific windows account/identity, e.g, "MEME". The asp app virtual root authentication is anonymous only (other types of auth are disabled) as the app will be doing form authentication. The filter…

boo9
- 3
- 3
0
votes
1 answer
Does there exist an open source ISAPI filter allowing IIS6 to do HTTP compression?
I'm looking for an open source project of an ISAPI filter for IIS6 to do gzip/deflate compression of HTTP requests like the "HttpZip" filter at http://www.port80software.com/products/httpzip/

Max
- 4,965
- 17
- 49
- 64
0
votes
1 answer
URL rewrite (ISAPI)
I have a section of a website I'm building that is for the user's account pages.
The map of this bit of the site is like this:
*root*/account/details.php
*root*/account/subscriptions.php
*root*/account/options.php
I want to make it so that if a…

Kelsey Thorpe
- 49
- 8
0
votes
1 answer
appending to the beginning of a URL string using isapi 3
Trying to take an existing URL say: domain.com/qe/info/happy/
and prepend with the following: /qe-happy/
before: domain.com/qe/info/happy/
after: new.com/info/qe-happy/
I am using asapi 3

Citti
- 423
- 1
- 6
- 23
0
votes
1 answer
IIS: Calling GetProcAddress on ISAPI filter failed
I am attempting to write a very simple ISAPI filter for debugging another issue. IIS is returning error code 0x8007007f with Calling GetProcAddress on ISAPI filter "the dll here" failed
I'm using C++ without MFC in Visual Studio 2012 on Windows 7…

Lucas Holt
- 3,826
- 1
- 32
- 41
0
votes
1 answer
How to reflect another site in my site using URL Rewriting?
I think my doubt is simple, but I could not find the answer.
I have a linux server that hosts the domain http://www.DomainOne.com
And I have a second server based in Windows plataform that hosts the domain http://www.DomainTwo.com
What I want to do…

Andy Schmitt
- 441
- 1
- 6
- 23
0
votes
1 answer
IIS - how best to serve a different version of site to different users
This is not regarding version control for the source. This is a requirement of the business and how it interfaces with various vendors, so I'm trying to work out the best possible way to set this up. Essentially we need to serve a different major…

Nathan Loding
- 3,185
- 2
- 37
- 43
0
votes
0 answers
upgrade to .net 4.5 and IIRF breaks relative paths processed in code behind
We've recently upgraded our site from .net 2.0 to .net 4.5. For SEO purposes we use ISAPI filters to convert urls which look like this:
MainSite/directory/virginia/richmond.aspx…
0
votes
2 answers
Is that possible to run IIS's w3wp.exe in limited user account?
I am using Windows 7 and IIS 7. I am writing Delphi DataSnap ISAPI. I wish to trace bugs occurs in my ISAPI dll.
I learn using "w3wp.exe -debug" may help to debug ISAPI dll in Delphi IDE. However, I wish to debug my ISAPI in limited user account…

Chau Chee Yang
- 18,422
- 16
- 68
- 132