Debugging Delphi ISAPI Dll on Apache - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:42:09Z http://stackoverflow.com/feeds/question/1138354 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1138354/debugging-delphi-isapi-dll-on-apache 0 Debugging Delphi ISAPI Dll on Apache M Schenkel 2009-07-16T15:16:32Z 2009-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#1138624 0 Answer by skamradt for Debugging Delphi ISAPI Dll on Apache skamradt 2009-07-16T16:02:34Z 2009-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#1140271 0 Answer by Stijn Sanders for Debugging Delphi ISAPI Dll on Apache Stijn Sanders 2009-07-16T20:59:13Z 2009-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#1140628 0 Answer by Rob Kennedy for Debugging Delphi ISAPI Dll on Apache Rob Kennedy 2009-07-16T22:16:12Z 2009-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>