How to remotely debug a DLL in delphi 7 from scratch

can anybody help me how to do remote debugging of a DLL (just a dll) which is exe independent. Dll is the service that will be run on the server machine, and the source code for the DLL is on the client machine. Now that this service is running on the server, I want to debug the delphi code that is on the client machine using delphi 7.

+2
source share
1 answer
  • Compile the DLL using remote debugging symbols and deploy both (.dll, .rsm, etc.) to the server machine.
  • Install the remote debugger on the server machine
  • Run the remote debugger on the server machine.
  • Run Delphi on the client machine and load the DLL project
  • Delphi, Run - Attach .
  • , DLL

. http://delphi.wikia.com/wiki/Remote_Debugger

+4

Source: https://habr.com/ru/post/1726221/


All Articles