zoukankan      html  css  js  c++  java
  • delphi 2007 远程调试

    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

    • The local and remote computers must be connected through TCP/IP.
    • All of the files required for debugging the application must be available on the remote computer before you begin debugging. This includes executables, DLLs, assemblies, data files, and PDB (debug) files.
    • In addition to the port that the remote debug server listens on, a connection is opened for each application that is being debugged. Additional port numbers are chosen dynamically by Windows; a firewall that only allows connections to the listening port will prevent the remote debugger from working.

    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 FilesCodeGearRAD Studio6.0Bin.
    2. Copy rmtdbg105.exe from the RAD Studioin 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:WindowsSystem32 egsvr32.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 remote debugger 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 remote debugger iconCodeGear Remote Debugger Listener icon.
    2. In the shortcut menu, choose Exit.

    Shutting down the remote debug server does not affect active debugging sessions.

    QQ图片20150916152631

  • 相关阅读:
    20165101刘天野 2017-2018-2 《Java程序设计》 结对编程练习_四则运算(第一周)
    20165101刘天野 2017-2018-2 《Java程序设计》第6周学习总结
    20165101 实验一 Java开发环境的熟悉
    20165101刘天野 2017-2018-2 《Java程序设计》第5周学习总结
    HTML——meta
    CSS——改变浏览器滚动条样式
    HTML5——移动端的点击、拖拽
    JS高级——弹出框的美化
    JS高级——监听浏览器的返回事件
    JS高级——文件操作
  • 原文地址:https://www.cnblogs.com/h2zZhou/p/4813423.html
Copyright © 2011-2022 走看看