The Internet Server Application Programming Interface (ISAPI) is an N-tier API of Internet Information Services (IIS).
Questions tagged [isapi]
410 questions
1
vote
1 answer
ISAPI_Rewrite 3.0 ... Noob ... how to get started? just installed
just installed v3 lite to try it out before getting full version.
i got the follwing in .htaccess file in the root folder of the .net web app
RewriteEngine On
RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP_HOST}…

robert
- 1,523
- 5
- 19
- 27
1
vote
1 answer
Tomcat Web Application threads stuck in Service Stage - causing app hang-ups
We are using Tomcat 6 / IIS to host our Java MVC web applications (Spring MVC and Frontman). We started running into problems recently when we see threads stuck in the Service stage for hours.
Using Lambda Probe we see the threads start to pile up…

Jibba
- 426
- 4
- 14
1
vote
1 answer
How can I access a TLS Session ID within an ASP.NET session? (To avoid BEAST cookie theft)
This post refers to a way to avoid cookie theft by using a TLS Session ID as an alternative.
How would I access the TLS Session ID within ASP.NET?

makerofthings7
- 60,103
- 53
- 215
- 448
1
vote
3 answers
ISAPI Rewrite with instead of mod_rewrite
I'm installing Modx on windows with ISAPI Rewrite instead of apache with mod_rewrite?
How do you define the rewrite rules? I'm guessing not with an .htccess file?
any Ideas? Thanks
evh
1
vote
1 answer
READ Bearer in ISAPI DELPHI
I have ISAPI DLL project in Delphi 10.2, i need to ***read ***all header items, exactly the Authorization Bearer to accept or not the POST request.
With exe DatasnapBroker, this is a success with this code
FServer :=…

Bill.Parish
- 13
- 3
1
vote
1 answer
An ISAPI reported an unhealthy condition to its worker process in Blazor Entity Framework App
I use Entity Framework in a Blazor Server App to access data in an SQL Server database. The app runs fine in the IDE against the SQL Server database, but when I deploy to a test web server running IIS 10, it works until it pulls data from the…

BookTrakker
- 37
- 4
1
vote
1 answer
TISAPIApplication Lifetime in IIS 7.5 running on Windows Server 2008 RS2:
I am trying to figure out how to control the lifetime of a TISAPIApplication (written in Delphi XE) in IIS 7.5 - seeing unexpected behavior:
The ISAPI application pool and ALL LEVELS of IIS/ISAPI configuration are set to run with anonymous access…

Vector
- 10,879
- 12
- 61
- 101
1
vote
2 answers
How to install a Delphi Webservice ISAPI module on Apache 2.3
I have a webservice compiled into a ISAPI module (dll). I have Apache 2.3 correctly installed. How to install this DLL into apache?

Carlos B. Feitoza Filho
- 704
- 7
- 23
1
vote
1 answer
Sending URL to ISAPI module in IIS
So I have an ISAPI module running my website. I would like to get the URL to be forwarded to my ISAPI module so that it can parse it and display things accordingly. For example, if I navigate to www.mydomain.com, I wish for my app to run. This does…

Altainia
- 1,347
- 1
- 7
- 11
1
vote
1 answer
How can i programmatically find out how many resources a IIS server has and the traffic on each resource .. etc
I want to write a program to find out what resources an IIS server has and how many hits are there on each resource. The resource can be anything from a html page to files like sound clips, pictures , etc. I want to find out a list of all these…

ritwik
- 11
- 2
1
vote
1 answer
Write an .htaccess file without %{REQUEST_FILENAME}
So I have a ridiculous problem that the hosting company cannot seem to take care of by itself. I have a website on a windows server that has ISAPI Rewrite 3 running to allow me to use .htaccess files for wordpress. But I noticed that the…

BFTrick
- 5,211
- 6
- 24
- 28
1
vote
5 answers
Some SharePoint pages serve as http in https environment
I have a WSS 3.0 system using SSL where every page is supposed to be served as https. Almost all pages do come out as https, but in certain cases I click on a link and that brings up an http version of a page (which does not load). In those cases I…

strongopinions
- 3,917
- 3
- 25
- 28
1
vote
0 answers
IIS Tomcat connector, AJP configuration
I setup ISAPI connector to have IIS web server communicate with Tomcat Servlet container. However I am getting an error while trying to access Tomcat application :
***Service Temporarily Unavailable!
The server is temporarily unable to service your…

vs777
- 564
- 2
- 11
- 24
1
vote
1 answer
ServerSupportFunction ask DWORD for null-terminated string, how to do on 64 bit?
I need to call the windows api :
BOOL WINAPI * ServerSupportFunction(
_In_ struct _HTTP_FILTER_CONTEXT *pfc,
_In_ enum SF_REQ_TYPE sfReq,
_In_ PVOID pData,
_In_ DWORD ul1,
DWORD…

zeus
- 12,173
- 9
- 63
- 184
1
vote
1 answer
Delphi 10.4 ISAPI Printer.Handle
I created a very simple ISAPI DLL with the following code on the default handler:
procedure TWebModule1.WebModule1DefaultHandlerAction(Sender: TObject;
Request: TWebRequest; Response: TWebResponse; var Handled: Boolean);
var
DevHandle :…

Jeff Cope
- 781
- 2
- 7
- 15