ISAPI Extensions in IIS Express?

Hi, I would like to run and develop the ISAPI extension in IIS Express 7.5 on a Windows 7 x64 computer. Suppose I have an ISAPI extension in C: \ dev \ mywebapp.dll. DLL is a 32-bit embedded 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 full-size IIS for the same purpose?

I tried using IIS Express 7.5, but when I go to http: // localhost: 8080 / mywebapp.dll , my browser asks me to save the dll. I would like IIS Express to run it as an ISAPI extension, as well as full IIS. Anyone ideas?

TIA

Johan

+3
source share
3 answers

I use 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

+2
source
+2
source

Run the 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']

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

0
source

All Articles