How to debug an isapi extension using the delphi debugger?

Viewed 3484

I am trying to debug an ISAPI extension written in Delphi. The extension works just fine, however I can't seem to debug it (ie set a breakpoint and singe-step the code).

Here is what I have done:

  • Launched Delphi Rad Studio as administrator.
  • Made sure the extension is loaded by accessing it in browser.
  • Selected run->attach to process.
  • Selected the w3wp.exe process (with "pause after attach" unchecked)
  • Set a breakpoint at the start of my default handler's action
  • Tried to access again the extension

However the breakpoint is never triggered in my handler (see pic below):

enter image description here

1 Answers
Related