Question

Hi I'd like to run & develop an ISAPI extension in IIS Express 7.5 on a Windows 7 x64 machine. Lets say that I have the ISAPI extension in C:\dev\mywebapp.dll. The dll is 32 bit native DLL written in Delphi. Then I can configure IIS to respond to requests like http://localhost/foo/mywebapp.dll?id=100. Does anyone know if I can use IIS Express 7.5 instead of the fullblown IIS for the same purpose?

I have tried using IIS Express 7.5 but when I go to my http://localhost:8080/mywebapp.dll my browser is asking me to save the dll. I'd like IIS Express to run it as an ISAPI extension like the full IIS would do. Ideas anyone?

TIA,

Johan

Was it helpful?

Solution

I am using IIS Express to debug my Delphi ISAPI Web Application. The following page shows how to do this:

http://paul.klink.id.au/Software/Delphi/DebuggingIsapiWithIisExpress.htm

OTHER TIPS

maybe this will be of some help?

http://www.delphifeeds.com/go/s/61336

Run following command from the IIS Express installation folder.

appcmd set config /section:handlers /+[name='MyIsapiExtension',path='*.aaa',verb='GET,POST',scriptProcessor='C:\dev\mywebapp.dll']

More info can be found at http://technet.microsoft.com/en-us/library/cc754147%28WS.10%29.aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top