Questions tagged [isapi]

The Internet Server Application Programming Interface (ISAPI) is an N-tier API of Internet Information Services (IIS).

410 questions
0
votes
1 answer

Can you use Isapi Filters in Azure, and if so how?

We use the Helicon Isapi Rewrite filter and we are thinking of migrating to Azure. Is it possible to use it on an Azure Web Role? If I add it to the Web.config then I get the same error as I would on a standard non-Azure environment: "This…
SC7
  • 3
  • 3
0
votes
1 answer

Rewrite Rules with question mark in ISAPI

i have a rewrite question that need help with. Rewrite from this URL: mydomain/x.cfm?color=pink&page=1 to this URL: mydomain/pink--x.cfm?page=1 Using the following rules: RewriteEngine On RewriteCond %{QUERY_STRING}…
Yi Huang
  • 1
  • 1
0
votes
0 answers

Delphi XE2 64 bit ISAPI Access Violation

Windows Server 2008 R2 64 bit IIS 7.5 Delphi XE2 i made a simple WebService/ISAPI DLL using delphi XE2. this web service has a function that returns the sum of two numbers and made a simple client application to test this function. When i compile it…
Bahaa
  • 123
  • 2
  • 9
0
votes
1 answer

Performance loss due to add asp.net_isapi to request pipeline?

is there a notable performance loss if all files are handled with the aspnet_isapi in request pipeline using IIS6? IIS7 has the new integrated pipeline so that seems not to be a problem. I ask this, because I want apply an .net url replacer on .exe…
kcode
  • 1,220
  • 1
  • 18
  • 34
0
votes
1 answer

ISAPI Rewrite Rule - Want to Eliminate Some Characters

I am using isapi rewrite and i am having a url www.example.com/<%25=sSiteURL%25>/abc/abc/abc/abc/abc/1883.htm I want to remove this string <%25=sSiteURL%25> I want the url to be like this www.example.com/abc/abc/abc/abc/abc/1883.htm Can anyone…
0
votes
2 answers

how to configure Delphi 2010 ISAPI.dll in IIS7 64bit?

what are minimal steps required to make ISAPI dll working in IIS7 for query www.website.com/test/bin/ISAPIGet.dll?a=b ? Please don't refer to top google searches, they are very generic and don't work. I wrote very simple ISAPIGet.dll in Delphi2010,…
K-man
  • 117
  • 1
  • 10
0
votes
3 answers

How to rewrite rules for two subfolders using mod_rewrite

I would need to do something like this: ########## SITE 1 RewriteEngine on RewriteBase /mysite1 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 [L,QSA] ########## SITE…
Alvaro
  • 40,778
  • 30
  • 164
  • 336
0
votes
1 answer

Friendly Blog Url Isapi Rewrite Regex

My regex isn't great, and I'm struggling here. I need regex to get title from these 2 formats: http://domain.com/blog/title http://secure.com/domainkey/blog/title but not match anything from (where subfolders could be…
TOMNM
  • 3
  • 1
0
votes
2 answers

Setting the path of an ISAPI dll file creation

I am working on a project where I use an ISAPI dll file/web service to generate a file. I previously used a hardcoded location as to where to store the file, which worked great, I am now trying to swap it with a location stored within a specified…
0
votes
1 answer

ISAPI extension dll dependencies path

I'm writing an ISAPI extension. The main DLL depends on several other DLLs. I put all of them on the same path and it works. The question is: why? AFAIK Windows should look up for libraries in the .exe folder (which is something like…
zen-cat
  • 425
  • 2
  • 9
0
votes
1 answer

Wordpress MultiSite with ISAPI filters

I just have installed Wordpress 3.5 to manage more than one domain with one installation (Multi-Site: http://codex.wordpress.org/Create_A_Network) At the end of the installation, Wordpress shown me the follow code for .htaccess RewriteEngine…
Dail
  • 4,622
  • 16
  • 74
  • 109
0
votes
1 answer

ISAPI Rewrite Syntax Help?

I have the following RewriteMap mapfile txt:D:\mysite\urls.txt RewriteRule ^([^?/]+)\.htm /vehicle.aspx?e=${mapfile:$1} [QSA] RewriteRule ^(.*)\.htm $1\.aspx Now my problem is, I want to make the url's look like this for the /vehicles.aspx page…
YodasMyDad
  • 9,248
  • 24
  • 76
  • 121
0
votes
1 answer

Odd situation .htaccess file with Win Server2k using Helicon Tech ISAPI Rewrite

I am having issues with an older .htaccess file not accepting URL's that are case insensitive. I need all URL's to be case insensitive, but I have to keep rewriting everything manually which seems completely horrible in practice. Currently, I have…
0
votes
1 answer

Path to ISAPI filters with double back slash.

Recently i had an EPIserver site throing an error becaus it could not load the LoadLibraryEx for ISAPI-filter "C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_filter.dll". I checked the IIS and the path looked very weird with 2 backslashes.…
Daarwin
  • 2,896
  • 7
  • 39
  • 69
0
votes
3 answers

c++, syntax for passing parameters

This code snippet is part of an isapi redirect filter written in managed c++ that will capture url requests with prefix "http://test/. Once the url is captured it will redirect those request to a test.aspx file i have at the root of my web app. I…
MG.
  • 883
  • 9
  • 19
  • 39