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
ISAPI Rewrite - allow a subdomain to only hit a specific folder
Is there a way with ISAPI v3 to allow a subdomain to only hit a specific folder, and all other requests would redirect to www? I also have some urls under this folder that need to be rewritten. There will also be rewrite rules for valid www…

Brian Salta
- 1,576
- 1
- 10
- 18
0
votes
1 answer
Integrate Delphi ISAPI DLL into an ASP.NET web application
We have all the code in Delphi and it is hard to create a new ASMX / SVC File directly in .NET because it uses encryption and weird stuff :) as it would take around 2 weeks to convert and to test...
Because of that we agreed that will keep the…

balexandre
- 73,608
- 45
- 233
- 342
0
votes
1 answer
isapi 3 - strip all query strings from domain and subpages
I would like to know how to strip out all query strings, i.e.
domain.com/?a=123 -->> domain.com
And
domain.com/page.asp?b=456 -->> domain.com/page.asp
0
votes
2 answers
Failed to find the RegisterModule entrypoint in the module DLL... - what's going on?
I have an ISAPI module (native - NO ASP.net etc) written in Delphi XE. Trying to run it on IIS 7.5 on a Win 7 64 enterprise desktop machine.
App pool, webSite, etc are configured correctly, ISAPI module is permissioned to execute, classic pipeline,…

Vector
- 10,879
- 12
- 61
- 101
0
votes
1 answer
ISAPI Rewrite syntax help for redirecting from .htm page to .aspx page
I want to rewrite(301 redirect) www.mydomain.com\default.htm to www.mydomain.com\HomePage.aspx. This way I need to do for each htm page in my site to different aspx page.

Ramya
- 121
- 2
- 7
- 13
0
votes
2 answers
Will my HttpModule get called if IIS produces a 400: Bad Request?
I have an ASP.NET website and am having trouble capturing some specific requests that are giving me trouble. The website calls an asmx web service that it also hosts (therefore makes a webservice call to (http://localhost/whatever.asmx)). I'm…

MStodd
- 4,716
- 3
- 30
- 50
0
votes
1 answer
Automatically add Last-Modified header IIS?
Is there an ISAPI filter that can automatically add the Last-Modified header in IIS?

Rob Stevenson-Leggett
- 35,279
- 21
- 87
- 141
0
votes
1 answer
iis7.0 cant open asp.net4.0 sites
I have an asp 4.0 site on IIS7.0 that will not load. Error message: HTTP Error 404.17 - Not Found.
ISAPI Filters for 4.0 do not exist in IIS.
aspnet_regiis.exe doesn't exist in :
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319. So I cant install…

user999690
- 257
- 4
- 10
- 23
0
votes
1 answer
Regex to Replace Spaces in Two Conditions with Isapi ReWrite
I am using Isapi Rewrite for IIS, and I want to make SEO friendly URLs for a dynamic product page.
I need to replace spaces differently in two query string parameters.
In the first param, \s should be replaced with +
In the second, all \s should be…

User970008
- 1,135
- 3
- 20
- 49
0
votes
1 answer
ISAPI extension loads wrong DLL
IIS loads legacy ISAPI extension and IIS module, both use DLL with same name, however these DLLs are different (linked against different versions of thirdparties). So far there should be no problem, each component (extension and module) reside in…

kreuzerkrieg
- 3,009
- 3
- 28
- 59
0
votes
0 answers
Mysterious URL remapping in ASP.Net
I'm working on a legacy ASP.Net web forms app that is remapping the sitemap URL. When I go to www.mysite.com/sitemap.xml it's redirecting to sitemap.aspx.
I don't see anything in the web.config file dealing with URL mapping, so I'm not sure what…

larryq
- 15,713
- 38
- 121
- 190
0
votes
1 answer
Helicon Isapi rewrite - can't get urls to be case insensitive
Running Helicon Isapi rewrite to make overly long coldfusion CMS generated urls 'friendly'. Works very well and we've been using it for several years both with direct rewrites and regex.
I cannot get it to treat urls case insensitively.
The…
Jaz
0
votes
1 answer
ISAPI redirect to external site in IIS 6.0
I'm using ISAPI Rewrite 3 and my server is running IIS 6. I've never used ISAPI Rewrite before, so I'm a bit in the dark about how to use it.
I'm trying to do a simple redirect, so that if anyone hits
http://www.mysite.com/page.aspx
on my server,…

Steven
- 18,761
- 70
- 194
- 296
0
votes
2 answers
ISAPI rewrite products
I need mod_rewrite functionality on an IIS .NET server. Is http://www.isapirewrite.com/ the best option? It seems to have the largest documentation/user base. I also see codeplex.com/IIRF , this is free but comments mention it has a different syntax…

Nona Urbiz
- 4,873
- 16
- 57
- 84
0
votes
1 answer
Accessing Multiple Trac projects with IIS using isapi_wsgi
I'm a newbie in the bug tracking system world.
I managed to install Trac 0.12 in Windows Server 2003 and was able to serve the project using IIS through an isapi_wsgi extension using the procedure found here:…

Pmalta
- 3
- 1