remote-debugging

While remote debugging how are the pdb located (VS 2008)

泄露秘密 提交于 2019-12-24 01:54:30
问题 When the debugger is attached to a process on remote server - What locations are searched for the pdb? In what order? (e.g. is it searched on the remote server (debuggee) or on the local client (debugger)) When I use the debugger to manually load pdb file from specific location - is the debugger looking for the file locally or is it the remote debugger monitor looking for the file on the? Is there any article that describes that process? 回答1: The machine the debugger is running on loads the

CFBuilder not stopping on breakpoints

╄→尐↘猪︶ㄣ 提交于 2019-12-23 20:25:08
问题 Since this question... Eclipse doesn't stop at breakpoints ...deals with eclipse itself and CFBuilder is eclipse based, I thought it might be helpful. One of the comments there mentioned stopping the server and redeploying the app :( My question is this: if CFBuilder (I'm using v 1.0) doesn't stop on breakpoints, or if it gets a li'l question mark icon over the breakpoint when it's set, how do I fix this Without Restarting The Server. Restarting fixes the issue about 95% of the time, but it

Remote debugging of a Java application launched as a Windows service

房东的猫 提交于 2019-12-23 17:09:56
问题 My Java application is started from within a native program through java.dll. This native program is launched as a service on Windows. The following options have been added to the JVM args for remote debugging: -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n In this configuration, it is impossible to connect from e.g. my Eclipse workspace. If the program is launched from the command-line, i.e. not as a service, I can connect to port 8787. How can I allow remote

android ndk hw debuggning memory

不想你离开。 提交于 2019-12-23 12:59:09
问题 Backgrond I am very experienced in C and pretty new to Android and Java, but this is rather environmental issues that programming. I have developed an administrative application in ANSI-C to be ported to any OS, just adding a UI in OS-dependent code. Well it uses quite some memory, especially for huge user files. I have a working Win32 program, trying to make an Android app using Android Studio with NDK. Android studio bundle NDK installation works fine I have installed and made a Win7

Nvidia visual studio Nsight CPU and GPU debugging

假如想象 提交于 2019-12-23 12:53:44
问题 The NVIDIA Nsight Visual Studio Edition does not seem to be capable of debugging CPU (host code) and GPU (cuda code) at the same time. With the Nsight Eclipse Edition (or cuda-gdb) this is quite simple, for example, you can "step in" to a CUDA kernel from the host execution. How to do the same with Visual Studio? 回答1: From the Nsight manual It says Use a separate Visual Studio instance to debug the host portion of a target application. If you wish to debug the host portion of your CUDA

unable to set web inspector breakpoints after upgrade to Safari 7.0.4, both local and remote

蹲街弑〆低调 提交于 2019-12-22 08:55:58
问题 After an upgrade to OSX 10.9.3 (13D65) and Safari 7.0.4 (9537.76.4), I am unable to set breakpoints in my cordova app using the Safari web inspector. Enabled breakpoints appear as dark grey, disabled as a lighter grey. "debugger" statements are ignored. The behavior is the same on either the simulator (iOS 7.1 11D167) or a physical device (iOS 7.1.1 11D201). The mobile app does show up under the Develop menu (iPad Simulator or xxx iPad). I can inspect the DOM. I tried the solutions suggested

debug spring boot in vagrant and docker

杀马特。学长 韩版系。学妹 提交于 2019-12-22 08:07:46
问题 I'm trying to setup development environment for spring-boot project based on docker and vagrant. I'm using IntelliJ running on windows to write code and vagrant to be able to run project in docker containers on any system. I'm building project with maven. Currently I'm able to run application packaged in jar in docker container running in ubuntu on virtualbox via vagrant. I cannot figure it out how to debug my application in IntelliJ, I start application with remote debugging on, correctly

How to debug a remote python application with (Python Tools for) Visual Studio?

霸气de小男生 提交于 2019-12-22 05:09:22
问题 According to http://pytools.codeplex.com/, PTVS supports "Local and remote debugging". However, I couldn't find anything related to it or. So I'm curious if their "remote debugging" is simply attaching to a running process on the same machine or if there's some actual remote debugging support over TCP/IP available. I'd like to use PTVS for a WSGI-based web applications running on apache on another (linux) machine, but without a proper remote debugger (such as WinPDB, which is not that bad but

Running the report browser (rb) for SASL error reports whilst in a remote shell

被刻印的时光 ゝ 提交于 2019-12-21 20:47:54
问题 Folks we are now delploying a lot of Erlang instances and we are seeing bugs been thrown and would like to examine them... Normally we connect to the running instance with a remote shell and get access to an Erlang console that way, but this doesn't work for rb or error messages... How do I get remote access to my SASL error messages without dropping the server, starting it non-detached and looking at the shell? 回答1: I ran into this back in R11B and ended up creating a clone of rb that works

Set default JVM parameters to be used for applet launch

跟風遠走 提交于 2019-12-21 20:37:42
问题 I am trying to remote debug a Java applet, but I cannot seem to get the -agentlib:jdwp JVM argument to work. I have tried specifying it in the Java control panel for the particular JRE used, and I have tried setting it via the JNLP file used to launch the applet. What is the correct way to set JVM parameters for applet launch? In particular, to debug remotely. 回答1: Looking at a similar SO question, I found the following answer... Sometimes to debug some security related stuff the browser