I have a problem removing breakpoints that are set when I attach to a process.
I am attaching to the aspnet_wp process and setting breakpoints. However any breakpoints I remove while debugging are only removed temporarily. when I re-attach the debugger to the process, my breakpoints that I had removed come back again. I have found that ...
I have used the "Attach to process" function within VS 2008 many times, but never actually on a remote machine. Now I have to do it and I already read a bunch about it on the net. After playing around a bit I've reached a point where I am not quite sure how to proceed. First of all, here's a quick list of what I've done so far:
Test mac...
Receive this error message:
Error while trying to run project: Unable to start debugging.
Unable to start program "D:\xxx.exe".
There appears to be no suitable logon session on the server. Please verify that you are logged on to the server through Terminal Services or that someone is logged into the server locally.
This is the 1st ti...
I followed these instructions while trying to get remote debugging working with Delphi 2007. After completing all the steps, the remote debugger is half working.
It is able to launch and halt the application but the break points I set do not work. The automatic break point (at line Application.Initialize;) is working but it goes rig...
My question is about remote debugging an application on an embedded arm processor using gdb/gdbserver.
I can debug the application itself, but the application dynamically links to a shared library which implements an in house communications protocol. I want to be able to set breakpoints within the shared library functions so try to fig...
Here's the setup I have:
On my local PC I build an un-managed C++ app in release mode, with debug information
On my local PC the .exe and .pdb file are in the same dir
On my local PC this works, I can debug as expected
On the remote PC I copy both of these files into a \bin folder
In my remote debugging settings I tell it to run in the...
I support a .NET IE Toolbar, for a population of users that have a variety of OS and IE versions, in a variety of remote locations. For a small number of these users, the toolbar installs properly, but never actually loads when they try to enable it in IE. We haven't been able to replicate this situation on our test pcs.
Most of our su...
Hello,
I am trying to get remote debugging working with Java on Solaris OS. Following is what I have tried-
I have a Java class called TestP which has the main method.
When I try
java -classpath . TestP
the program works fine. But when I try adding the debug parameters to the JVM-
java -Xdebug -Xrunjdwp:transport=dt_socket,address=...
I have recently begun a new project which runs on remote computer. I usually remote debug the application. I have setup microsoft sync toy to "echo" the built exe,dll,pdb and configs to the remote computer.
However, i cant add synctoy to my visual studio build events because it might disturb some of the other programmers in my team. I w...
I had remote debugger working. I have a set of computers on a private network. I could VPN to that network and debug by launching Visual Studio with the same user name and password as the user on the box I was debugging. This seems to have stopped working. I get an error now about the other machine not being able to connect back to me. I...
I have a 'release with debug info' unmanaged c++ .exe (built with VS2005) deployed onto another PC, the .exe and .pdb are in the same folder.
When I try to attach to the process from VS2005, either locally or remotely from my dev PC, all my breakpoints become disabled. I don't get any warning/error popups which makes me think the PDB fi...
i have a remote web site project in my sln that contains a wcf service and the server does not allow me to debug him...
when i run my client i get an error on the start that the server cannot be debugged..
how can i tell the vs to stop trying to debug the remote server?
...
How would I access a webserver behind a firewall? I'm developing an application for this webserver which is not yet open to the public.
Someone walked me through this before, so I know it can be done. However, it has been about four months and I haven't been able to do it again.
I'm using Putty to connect to the remote machine. From ...
I am able to connect to the remote machine and debug and see the source code, but when I set a break point Visual Studio don't break on it.
So is there something that needs to be done?
Or is it simply not possible to use breakpoints while remote debugging?
...
Anyone have documentation/tips/tricks/advice on how to debug an application from another computer? I have a MacPro (10.6.1) and a MacBook Pro (10.5.8), and I'd like to debug an application residing on the former from the latter. Both are running XCode 3.1.3.
...
I'm stuck after step 3 in trying to setup remote cross-debugging with Eclipse/RSE:
Installed RSE 3.1 on Eclipse 3.5
Setup a SSH connection profile to my remote device
built binaries using a cross-compiler
Now I can't find the Eclipse option to transfer the binaries to my device and debug using gdb. Under Debug Configurations, I can't...
can anyone please help me out, to how to do remote debugging of a DLL (Just a dll) which is independent of the exe.
The dll is a service which will be running in the server machine and the DLL source code is at the client machine. Now when this service is running at the server machine i want to debug the delphi code which is at the clien...
I have crated a ftp server and placed my website code over there. Now i want my team members to work on the same copy over internet. Now the problem is that they can open the solution in VS 2008 but could not debug it. i installed remote desktop monitoring and all required setups but could not get what the problem actually is.
1 more Q...
I am running my server from outside of my eclipse and now i want to debug it. so is it possible ?
If yes how can i do that.
...
Greetings,
In a shell script,I have setup JAVA_OPTS environment(to enable remote debuggin and increase memory) and then execute the jar file as follows:
export JAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n -Xms512m -Xmx512m"
java -jar analyse.jar $*
But it seems theres no effect of JAVA_OPTS env var...