Debugging Delphi ISAPI Dll on Apache - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T05:42:09Zhttp://stackoverflow.com/feeds/question/1138354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1138354/debugging-delphi-isapi-dll-on-apache0Debugging Delphi ISAPI Dll on ApacheM Schenkel2009-07-16T15:16:32Z2009-07-16T23:26:21Z
<p>I have run into a situtation where frequently when debugging a ISAPI Dll (TWebModule) running under Apache I get errors. The caption on the error box is "Debugger Fault Notification" and contained in the message is, among other things:
"c:\program files\Apache\bin\httpd.exe faulted with message......."</p>
<p>When this happens the cpu window pops up, and I have to hit the "OK" button on the error message. I might have to do this 3 - 5 times before program flow continues. </p>
<p>This is happening on my laptop. I have a desktop with the same exact configuration (as far as I know) and I don't have this problem. Both operating systems are XP. So obviously there is some setting or outdated file somewhere. </p>
<p>Also, I have noticed if first run my website when Apache is not in the debugging envrironment it seems not to have this problem. (i.e. start apache in the services, run my web app, stop the service, and then debug it within the Delphi environment).</p>
<p>Any ideas???</p>
http://stackoverflow.com/questions/1138354/debugging-delphi-isapi-dll-on-apache/1138624#11386240Answer by skamradt for Debugging Delphi ISAPI Dll on Apacheskamradt2009-07-16T16:02:34Z2009-07-16T16:02:34Z<p>While it doesn't directly answer the how to debug using Apache, another alternate debugging technique which works well is to use <a href="http://users.telenet.be/ws36637/" rel="nofollow">idDebugger</a> (near the bottom of that page). It will allow you to debug ISAPI DLL's directly from the IDE without having to start/stop services. I now never develop ISAPI DLL's without it.</p>
http://stackoverflow.com/questions/1138354/debugging-delphi-isapi-dll-on-apache/1140271#11402710Answer by Stijn Sanders for Debugging Delphi ISAPI Dll on ApacheStijn Sanders2009-07-16T20:59:13Z2009-07-16T20:59:13Z<p>To avoid this and other problems, I've started <a href="http://xxm.sourceforge.net/" rel="nofollow">xxm</a>. It's an alternative to TWebModule, and uses a separate wrapper to run with IIS, but there's also an Apache, FireFox and IE wrapper! It also uses mixed-HTML-Delphi-source and the development-mode wrappers do the parsing and an auto-compile to give a web-script-like environment.</p>
<p>Also the InternetExplorer plugin works great in the debugger (with iexplore.exe as host application).</p>
http://stackoverflow.com/questions/1138354/debugging-delphi-isapi-dll-on-apache/1140628#11406280Answer by Rob Kennedy for Debugging Delphi ISAPI Dll on ApacheRob Kennedy2009-07-16T22:16:12Z2009-07-16T22:16:12Z<p>Error code 0xC0000008 is <code>Status_Invalid_Handle</code>. That can be thrown by <code>CloseHandle</code>, for example, when you try to close a handle that either was never open or was already closed. The error might not occur when you're running outside the debugger because the API won't throw an exception <em>unless</em> it's being debugged.</p>
<p>If you're getting that exception in code that the debugger doesn't have access to, then the debugger will display the CPU window instead. Look at the call stack to find the place in your code closest to where the exception came from.</p>
<p>It's also possible that it's not occurring in your code at all. Try doing your same debug routine <em>without</em> your module installed. Do you still get errors?</p>