Questions tagged [isapi]

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

410 questions
119
votes
12 answers

Problem in running .net framework 4.0 website on iis 7.0

Hey I got problem in running .NET framework 4.0 website on IIS7.0. the error I got is like: HTTP Error 404.2 - Not Found "The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server". Module…
prashant patel
  • 1,225
  • 2
  • 8
  • 7
27
votes
2 answers

Why can I remove ExtensionlessUrlHandler from an MVC application without any ill effects?

I am trying to streamline my MVC application and deleting as much as possible. Can someone explain to me what this code below does in the web.config file in the root of the application. I have commented it out and still managed to run the…
Oskar
  • 1,597
  • 4
  • 19
  • 38
23
votes
4 answers

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 servlet container with IIS. The benefit of this is…
benstpierre
  • 32,833
  • 51
  • 177
  • 288
20
votes
6 answers

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 supports your answer. NB: For those who might think this is…
Cheeso
  • 189,189
  • 101
  • 473
  • 713
12
votes
2 answers

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 images aren't being served. I'm guessing they're…
StephenPAdams
  • 2,797
  • 2
  • 30
  • 49
11
votes
7 answers

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 is dynamic and could potentially be several…
Greg Ballard
11
votes
6 answers

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 installs an ISAPI filter.
Cheeso
  • 189,189
  • 101
  • 473
  • 713
10
votes
1 answer

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 IIS7 written in .Net. I want to know should one…
Prashant
  • 2,190
  • 4
  • 33
  • 64
8
votes
5 answers

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 properly. In Delphi I'm trying to attach to the…
Vector
  • 10,879
  • 12
  • 61
  • 101
8
votes
4 answers

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: DLL load failed: The specified module could not be…
RadiantHex
  • 24,907
  • 47
  • 148
  • 244
8
votes
5 answers

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 experience in this specific area please share your…
Tihauan
  • 2,780
  • 2
  • 26
  • 29
7
votes
3 answers

How do I enable ISAPI DLLs for IIS 10 on Windows 10?

I've configured ISAPI DLLs for IIS 7.x for years, but this is the first time I've tried with Windows 10, and it is not working, and I cannot find any descriptions of how to do it successfully. I am working in Windows 10 Professional, and IIS and…
Cary Jensen
  • 3,751
  • 3
  • 32
  • 55
6
votes
2 answers

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 HttpModule. In IIS 7 (Integrated mode) the order…
Kurt Schindler
  • 21,037
  • 4
  • 43
  • 48
6
votes
4 answers

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 = *)) However, that doesn't seem to work when the last…
David
  • 2,782
  • 4
  • 31
  • 47
6
votes
3 answers

Msmdpump.dll OLAP data pump is throwing a 500 error

How do I resolve this issue with requests to msmdpump.dll for connections to SQL Server Analysis Services? I am receiving a 500 Error from the IsapiModule. On a Windows Server 2012 R2 machine, with IIS 8.5, I have setup the OLAP data pump…
Seibar
  • 68,705
  • 38
  • 88
  • 99
1
2 3
27 28