delphi 2007 远程调试

时间:2015-09-16 15:49:45   收藏:0   阅读:319

Remote debugging lets you debug a RAD Studio application running on a remote computer. Once the remote debug server is running on the remote computer, you can use RAD Studio to connect to that computer and begin debugging. 

Prerequisites and security considerations for remote debugging

Warning: The connection between RAD Studio and the remote debug server is a simple TCP/IP socket, with neither encryption nor authentication support. Therefore, the remote debug server should not be run on a computer that can be accessed over the network by untrusted clients.

To install and start the remote debug server

  1. If RAD Studio is installed on the remote computer, skip to step 4. In this case, the remote debug server (rmtdbg105.exe) is already available, by default, atC:\Program Files\CodeGear\RAD Studio\6.0\Bin.
  2. Copy rmtdbg105.exe from the RAD Studio\bin directory on your local computer to the directory of your choice on the remote computer. If you are debugging a managed application, also copy dbkpro<nnn>.dll
  3. If you are debugging a managed application, register dbkpro<nnn>.dll on the remote computer by running the regsvr32.exe registration utility. For example, on Windows XP, enter C:\Windows\System32\regsvr32.exe dbkdebugproide<nnn>.bpl at the command prompt.
  4. On the remote computer, run rmtdbg105.exe using the following syntax: rmtdbg105.exe [-listen [hostname:]port] where:
    1. hostname is an optional host name or TCP/IP address for binding to a particular host, for example, somehost or 127.0.0.1. If you specify hostname, you must also specify :port.
    2. port is an optional (required if hostname is specified) port number or standard protocol name, for example, 8000 or ftp. If omitted, 64447 is used as the port number. Examples:
    3. rmtdbg120.exe
    4. rmtdbg120.exe -listen 8000
    5. rmtdbg120.exe -listen somehost:8000
    6. rmtdbg120.exe -listen 127.0.0.1:8000
After the remote debug server is started, its icon 技术分享 appears in the Windows taskbar.

To shut down the remote debug server

  1. On the remote computer, in the Windows taskbar, right-click the 技术分享CodeGear Remote Debugger Listener icon.
  2. In the shortcut menu, choose Exit.
Shutting down the remote debug server does not affect active debugging sessions.

技术分享

原文:http://www.cnblogs.com/h2zZhou/p/4813423.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!