Tagged Questions

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

learn more… | top users | synonyms

6
votes
2answers
119 views

How does IIS know if a request is webforms or MVC? (ASP.NET)

Short question: How does IIS know if a request is webforms or MVC?
6
votes
4answers
490 views

How can I attach the Delphi debugger to 64-bit IIS 7.5?

I'm running Delphi XE on Windows 7 Pro 64 and IIS 7.5, developing an ISAPI application. IIS is configured correctly (including allowing 32-bit code to run in an ISAPI process). The ISAPI process runs ...
6
votes
6answers
397 views

Can HTTP URIs have non-ASCII characters?

I tried to find this in the relevant RFC, IETF RFC 3986, but couldn't figure it. Do URIs for HTTP allow Unicode, or non-ASCII of any kind? Can you please cite the section and the RFC that ...
6
votes
5answers
533 views

Recommendations for getting started with WiX?

I found a WiX Tutorial, but it's really long-winded and seems like more than I wanted. What's the best way to get started quickly? My end goal is nothing really complicated: an installer that ...
6
votes
6answers
2k views

ASP.NET url MAX_PATH limit

I've found an issue with ASP.NET that I know at least has stumped one other person out there. We were trying to use an HttpModule to handle wildcard requests to a web application. The generated url ...
5
votes
2answers
381 views

IIS7: URL Rewriting with period

I'm using SEO-friendly URLs, and I can process most of them with ASP.NET, by mapping aspnet_isapi.dll to all URLs. (I set up an Handler Mapping in IIS that uses the dll for all paths. (path = *)) ...
5
votes
2answers
758 views

Python import error “DLL load failed” | Python

I'm serving a Django app behind IIS6 web server. The test server runs perfectly, but when running behind the web server a module failes to import I get this error: Error loading pyodbc module: ...
5
votes
1answer
2k views

Isapi filter not working on IIS 7 (which did work on IIS 6)

I have an Isapi dll which performs some basic URL rewriting. It works fine on II6. However, now my dev machine has been upgraded to Windows 7, I cannot get it to work under IIS 7 Is there anything ...
4
votes
1answer
87 views

IIS and Delphi - Get the application folder inside ISAPI

When running an ISAPI application on IIS, if we call ParamStr(0) or Application.ExeName inside our ISAPI we will get the folder that IIS is installed (C:\windows...). Is there any way of getting the ...
4
votes
1answer
186 views

Controlling a long running and critical ISAPI process

Scenario: Client makes ISAPI call with POST to IIS 7.5 server - the call will generate mission critical output to be distributed to numerous users. (using Delphi XE with Indy 9 HTTP client in this ...
4
votes
2answers
352 views

IIS 7.5 crashes after a few requests (with Django + PyISAPIe)

I managed to run Django using IIS as webserver (using PyISAPIe) and everything goes well in my test server, mounting Windows 2008 Server R2 64bit. Then I installed the application on another server ...
4
votes
2answers
496 views

Render ASP in pages with .html extension in Windows CE

I want to be able to use the .html extension to render ASP pages. I am using Windows CE 6 at the moment with the default web server, ASP is turned on. My registry key looks like ...
4
votes
1answer
1k views

IIS7 ISAPI Filter Module & HttpModule Events - How do they line up?

So IIS7 in Integrated Pipeline mode uses a IsapiFilterModule to shim ISAPI filter DLL's and fire off the correct "events" on the filters, which is quite different than previous versions of IIS or IIS7 ...
4
votes
5answers
742 views

Prevent Delphi COM component from showing MessageBox()

We have a Delphi 2007 COM component being executed from an ISAPI app. The COM component is hanging the app because it is attempting to display a MessageBox(). The call to MessageBox() must be ...
3
votes
1answer
99 views

issues using X-Forwarded-For Log Filter for Windows Servers

I've encountered some problems trying to use X-Forwarded-For Log Filter for Windows Servers. I've downloaded binaries (x86 version) and followed to installation manual from ...
3
votes
1answer
489 views

IIS7 HttpModule and ISAPI Filter execution order

I have a site using ISAPI Rewrite as well as a custom HttpModule that both do Url redirects and rewrites. In IIS 6, everything worked fine: The ISAPI Rewrite filter would run first, followed by the ...
3
votes
3answers
337 views

How can an ISAPI filter distinguish between being loaded by IIS or ISA?

I have an application implemented as an ISAPI filter whose behavior needs to change depending on whether it is being loaded by ISA or IIS. During GetFilterVersion it needs to register for ...
3
votes
1answer
588 views

ISAPI vs httphandler

In IIS6 was there a reason for using ISAPI filters/ extensions?. Can the same not be achieved using httphandler/ http modules. Also in IIS7 has ISAPI been removed completely ?. Is the entire code of ...
3
votes
1answer
1k views

App_offline.htm, CSS, images, and aspnet_isapi.dll

So, the site I'm working on is using urlrewriting in coordination with aspnet_isapi.dll (everything is mapped to it). I put up my app_offline.htm file, and all the text shows, however, the CSS or ...
3
votes
5answers
3k views

Web application in Delphi

I'm evaluating the possibility to write a web application using Delphi (ISAPI/CGI/...). I still cannot see enough reasons to use Delphi instead of a "classic" web development framework. If you have ...
3
votes
7answers
2k views

Can I create a unique filename based on ProcessID and ThreadID?

I have a delphi (Win32) web application that can run either as a CGI app, ISAPI or Apache DLL. I want to be able to generate a unique filename prefix (unique for all current requests at a given ...
2
votes
1answer
61 views

How to get all ServerVariables in an ISAPI extension

I have an old ISAPI extension that needs to pass forward server variables to another application. Currently the application pushes a number of fixed values explicitly to the backend application, but ...
2
votes
0answers
94 views

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 ...
2
votes
2answers
92 views

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 ...
2
votes
1answer
140 views

Windows CE 5.0 HTTPD <-> .NET Application

I'm what is the most practical way of coupling a HTTPD Web server of a Windows CE 5.0 Device to a .NET application that runs on the same Windows CE device? My first idea was to build an ISAPI ...
2
votes
1answer
320 views

isapi rewrite rules remove blog from wordpress url

while i am new to rewrite I will try to outline this problem in english first than start a thread on how to fix this issue with all your help. I am trying to remove the folder /blog/ from the ...
2
votes
2answers
653 views

How to get IIS 7 to route requests for .css files to aspnet_isapi.dll?

We currently use DotLess on an ASP.NET web application hosted on IIS 6. In order to get this to work, we needed to tweak our IIS settings so that requests for *.css files would get handled by ...
2
votes
1answer
89 views

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 ...
2
votes
1answer
302 views

Finding out the physical path of an ISAPI dll

I'm converting a Delphi ISAPI dll to work better on IIS 7.0 and 7.5. The ISAPI used to read its configuration from the registry but I wanted to convert that to using the web.config file in the same ...
2
votes
1answer
181 views

Can I create a clean URL using WebBroker and Delphi?

Can I create a clean URL for WebBroker webpages/applications ? A typical WebBroker URL normally looks like: hxxp://www.mywebsite.com/myapp.dll?name=fred or ...
2
votes
3answers
2k views

MVC2 + ASP.NET 4.0 + IIS6 + extensionless URLS, no longer need wildcard mapping?

I noticed that asp.net 4.0 now installs a top-level isapi plugin (in iis6), such that it can inspect every request coming to the server. Should this now allow us to run MVC applications with ...
2
votes
1answer
473 views

Apache Hosted Web Service Doesn't Handle TRemotable classes

I started with an ISAPI DLL which I created with Delphi 2009, This module perform as expected when running in IIS 5.1 on Windows XP. This same module when hosted using Apache 2.2.15 and mod_isapi does ...
2
votes
1answer
2k views

Running a java web application in IIS

Has anybody found a way to run a Java web application within IIS? It seems to me it should be entirely possible to write an ISAPI plugin (is that the right word?) that integrates Jetty or a custom ...
2
votes
1answer
208 views

Perl XS included from a “use lib” directory can’t be found by ISAPI

I have a Perl web application that runs on both Apache and IIS6 on Windows Server 2003. On Apache this script works just fine. In IIS using ISAPI, I am getting the following error message: ...
2
votes
1answer
912 views

IIS -> Isapi_Redirect -> Tomcat

I've been trying for days to get Tomcat up and running through IIS via the Jakarta Connector. I've followed all of Microsoft's instructions -- put the connector .dll in %tomcatdir%\bin\win32\i386\, ...
2
votes
1answer
921 views

ASP.NET & AJAX threading

Referencing this question: http://stackoverflow.com/questions/435492/is-asp-net-multithreaded-how-does-it-execute-requests, would this be a correct interpretation of threading: ASP.NET has one ...
2
votes
4answers
1k views

Best way to debug a Windows CGI

I have a Windows CGI created with Delphi 2007 using CGIExpert that I need to debug. Is there any simply way to run it from within the IDE while passing parameters to it? I tried setting the Host ...
1
vote
1answer
72 views

Aborting ISAPI request from client:

App Chain: Running a Delphi ISAPI application under IIS 7.5/Server 2008R2 - 32 bit mode and Classic Mode pipeline. ISAPI app (TISAPIApplication) is built with Delphi XE. Client is a Delphi exe ...
1
vote
1answer
53 views

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 ...
1
vote
0answers
44 views

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 ...
1
vote
1answer
103 views

ISAPI Rewrite 3 - Folder? (Windows IIS 7 Server)

So I have ISAPI Rewrite 3 (Helicon) installed on my Server Windows IIS 7 Server and the service is running. In the Rewrite Manager, I have added a very simple rule (for all IIS Websites) that will ...
1
vote
0answers
124 views

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. ...
1
vote
1answer
91 views

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 ...
1
vote
2answers
164 views

CodeSite Logging From Delphi ISAPI

I have CodeSite Express, bundled with Delphi XE Enterprise. Right now I'm developing an ISAPI application in XE (I trace and debug using attach to process in XE - works fine) and I'd like to get some ...
1
vote
0answers
55 views

How to debug an ISAPI Filter?

ISAPI Filters are dll's that get attached to the w3wp process of IIS web server. ISAPI Filters have to compulsorily export two functions viz. HttpFilterProc and GetFilterVersion. I have written one ...
1
vote
1answer
239 views

ISAPI Extension gives 404 on IIS7

I'm running windows 7 64-bit and trying to load an ISAPI Extension I'm busy writing on my local IIS7 machine. I added the location to the DLL under "ISAPI and CGI Restrictions" I made the ...
1
vote
1answer
40 views

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 , ...
1
vote
1answer
194 views

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 ...
1
vote
0answers
248 views

Is it possible to validate an ASP.NET Forms Authentication ticket in ISA/UAG (or similar) and do redirects based on the result?

We have an ASP.NET MVC application that uses Forms Authentication to create and validate the authentication ticket (cookie). The log on flow is very special, not just username/password, but it ends ...
1
vote
1answer
317 views

Build a dll with satic libraries

I want to build a DLL to use it as an IIS/ISAPI application. So far so good. It works. However, I have to drag arround the runtime dll and other dependencies (like some boost libraries). I would like ...

1 2 3 4