Questions tagged [isapi]

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

410 questions
2
votes
0 answers

AV trying to access WSDL method from Intraweb ISAPI DLL

Delphi 7 Pro Intraweb 7.2 I'm trying to get a webservice to work within an Intraweb ISAPI DLL. I've consumed the webservice which works perfectly when I run my project as a Standalone Application but fails with an AV when I run my project as an…
mbd
  • 51
  • 3
2
votes
4 answers

Is possible to hide a .dll extension in a url

I'm looking for a trick to hide the .dll extension of an isapi dll in an url. I don't know if this is possible. but I preffer to hide it. Example www.mysite.com/test/myapp.dll/testfunction would be www.mysite.com/test/myapp/testfunction Thank you…
Francis Lee
  • 975
  • 8
  • 23
2
votes
1 answer

Mapping *.MVC to aspnet_isapi.dll on IIS7

We have a .net 3.5 application (MVC and WebForms mixed) that was hosted on IIS6. In order to make it work on IIS6 we had to add custom mappings to IIS such that *.MVC would map to aspnet_isapi.dll. So our URL's would end up looking like…
7wp
  • 12,505
  • 20
  • 77
  • 103
2
votes
2 answers

Advice for Web Site Development (WinCE)

I need to set up a web server on WinCE (7.0) and the following are some of the features that I need to implement through this web site: be able to update the device software (run an exe) and display output start/end process display the run-time of…
Ivan Santos
  • 624
  • 1
  • 8
  • 21
2
votes
2 answers

How can I make ADO database connections in 'TISAPIApplication` before processing incoming requests?

TADOConnection is failing to connect in the application initialization section of Delphi ISAPI App (TISAPIApplication): Application is built with Delphi XE SPI, running Win 7 64/IIS 7.5 and WinServer 2008 RS2 - it cannot connect with ADO in the…
Vector
  • 10,879
  • 12
  • 61
  • 101
2
votes
3 answers

How to get Hikvision DeepinViews license plate number from URL?

I cant find the solution anywhere and mine doesn't seem to work. I just want to see the last plate string in the browser,or the few last plates,doesn't…
Master
  • 135
  • 1
  • 11
2
votes
1 answer

How to configure IIS to map an ISAPI DLL off of a domain root

I have an ISAPI DLL installed under a directory like: c:\inetpub\wwwroot\emsserver\emsserver.dll This is a Delphi RAD Server app. In IIS Manager (Windows 10), under Root (computer name) -> Sites -> Default Web Site -> Emsserver, I have a handler…
GrandmasterB
  • 3,396
  • 1
  • 23
  • 22
2
votes
1 answer

Get plates from Hikvision LPR camera (returning only the last 20 plates) How to retrieve more?

I want to retrieving plates from LPR Hikvision camera but xml file returns only last 20 plates. Someone can help me to define correctly xml parameters to retrieve more registries? POST URL: .../ISAPI/Traffic/channels/1/vehicleDetect/plates POST…
PP.TT
  • 31
  • 3
2
votes
2 answers

IIS 8.5 serving dll for download instead of executing

The Problem: When I access a (32-bit) DLL via URL like http://localhost/somepath/some.dll?action IIS always thinks I want to download the file (with file size 0 byte) instead of executing the dll. What I tried so far: added an entry for this…
CeOnSql
  • 2,615
  • 1
  • 16
  • 38
2
votes
1 answer

Developing an ISAPI filter

I want to develop an ISAPI filter which shall read the headers of an URL, this shall talk to an ASP .NET application . Can this be achieved in C# , or do I need to develop this in C++ , and create a CLI/C++ DLL so that the ASP .NET application can…
Sujay Ghosh
  • 2,828
  • 8
  • 30
  • 47
2
votes
1 answer

Can someone help with a rewrite rule for IIS?

I am using Helicon ISAPI_Rewrite and have entered the following Rewrite Rule: RewriteRule /([^/?.]+) /MemberPages/OrderSupplies.aspx\?Name=$1 [NC,L] However, I have little regex knowledge, and this rule almost works. However, here is my situation: I…
LilMoke
  • 3,176
  • 7
  • 48
  • 88
2
votes
1 answer

How to read the active ISAPI filters properties of IIS

I want to know how many ISAPI filters are active on IIS. And I also want to read the metadata properties of these active ISAPI filters in C#. I have created an ISAPI filter dll and added it to IIS. I can see that filter in "inetmgr" but I want to…
Sandy
  • 6,285
  • 15
  • 65
  • 93
2
votes
0 answers

Automatic login of User without entering credentials (LtpaToken)

What I am trying to achieve: Automatically login a user by creating a LtpaToken (No user id, password) Before the request comes to Domino server, the user will be already authenticated with an external system which adds a http header variable called…
Rajeev Menon
  • 284
  • 5
  • 16
2
votes
2 answers

Approach Using a Front Controller and IIS Serving Static Files?

Background An IIS ISAPI filter routes all requests to a front controller Java CMS for response. No physical file corresponds to a given URL. Motivations: Securing URLs Enforcing SSL This is a performance bottleneck serving static files such as…
orangepips
  • 9,891
  • 6
  • 33
  • 57
2
votes
1 answer

IIS and ISAPI-WSGI = very slow

I have loaded 2 Django apps on IIS using isapi-wsgi. These are both server setups: Windows Server 2003, IIS6 and SQL Server 2005 Windows Server 2008 R2, IIS7.5 and SQL Server 2008 The Django apps are completely different from each other. They…
RadiantHex
  • 24,907
  • 47
  • 148
  • 244