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

  • 相关阅读:
    eaysui 引用 CSS和JS 文件
    在JSP 页面中 添加CSS 样式
    Spring Hello World
    jsp+jdbc
    eclipse插件开发:使用emf建模型时,需要注意模型的坐标和大小的保存
    eclipse插件开发:GEF 进阶: Viewer
    Asp.net之MsChart控件动态绑定温度曲线图
    根据图中的盲点坐标,弹出div层
    小结get和Post的区别
    使用JavaC编译一个Java文件
  • 原文地址:https://www.cnblogs.com/h2zZhou/p/4813423.html
Copyright © 2011-2022 走看看