Questions tagged [remote-debugging]

Remote debugging is the process of running a debug session in a local development environment attached to a remotely deployed application.

While developing applications, developers often need to run the applications on other machines than their development machine. Reasons could be many: big environment setup to run the application (server grade), running on different OSes, preventing the development machine from any damage, actual run on production-like environment and so on,

A remote debugger is installed on remote machine, which is then connected to development machine. Remote debugger allows debugging in debugger just like local process debugging.

For debugging, the developer builds the executable (and dependent modules) locally, copies them (manually or with script) to remote machine, and then begins debugging.

2628 questions
1
vote
0 answers

PHPStorm not disconnecting with XDEBUG on MacOS X

I am having connection difficulties with PHPStorm 8.x and remote XDEBUG running on a nginx server, wherein XDEBUG doesn't terminate upon cancelling the HTTP Request during a site reload or navigating to a different url. The issue occurs sporadic,…
Lorenz Lo Sauer
  • 23,698
  • 16
  • 85
  • 87
1
vote
0 answers

Getting Eclipse, Javascript debugging to work

I am not able to get Eclipse (luna SR1a) and Javascript debugging with Crossfire to work. Firefox and Eclipse are definitely connecting. I have Firebug, Crossfire and Status-Ever loaded in Firefox. Am able to start Crossfire listening, and Eclipse…
jradxl
  • 535
  • 1
  • 4
  • 20
1
vote
0 answers

An internal error occurred during: "Launching Java Project". java.lang.NullPointerException

I have researched this topic, but I've only been able to find examples that relate to Android development. I am developing in pure Java, without the additional Android libraries. I run Eclipse on a Windows environment. I also use Eclipse to create…
Moein
  • 739
  • 2
  • 9
  • 17
1
vote
1 answer

Is there a way to remotely monitor a specific Android application?

There is an android application I am planning to write, that will be used as an "always on" application (kiosk-mode) used on Android tablets running restaurant menu. Today, I already have a rudimentary application, but it is not quite what might…
bdutta74
  • 2,798
  • 3
  • 31
  • 54
1
vote
2 answers

intellij idea 14 cannot connect to debug tomcat7 service

Ok, I think I tried everything before I am posting this question. Please tell me, what I am (Still) missing. I keep getting "unable to connect" exception (unable to connect hostname:6012), I changed from default port 1099 and it still didn't…
ThePearl
  • 151
  • 2
  • 14
1
vote
2 answers

Unable to start UE4Editor.exe

Trying to launch the editor from Visual Studio 2013 Ultimate I get the following error in the title. VS says it's because it can't reach MSVSMON.EXE on a "remote computer", the weird thing is that I'm not trying to debug on a remote computer, but…
1
vote
0 answers

Issue with C# Debugger.Lauch() Method

I am debugging a C# windows service using System.Diagnostics.Debugger.Launch(). The development environment is Windows server 2008. The same machine is used by other user as well as server m/c allows multiple login. My problem is, when i tried to…
Gnana
  • 53
  • 1
  • 6
1
vote
1 answer

Sonar Server in Debug Modus - Do not stop at Breakpoint

For the development of my own sonar plugin i want to be able to debug. after quite a while I found out how to run the sonarqube server in debug mode. Therefore I followed the instruction of the following website. enter link description here When I…
1
vote
0 answers

Attach to specific process using IDA + WINDBG in kernel debugging

I want to debug a specific process on a remote system and the only way i can do that is to use the kernel debugging method. It works pretty good with just WINDBG, but i think ida can give me the extra edge i need for a better reversing…
0xAK
  • 230
  • 2
  • 15
1
vote
1 answer

VS2013 azure emulator worker run debug

Can't launch the azure emulator in debug mode. (vs2013 windows8) Steps for scratch: New project : Azure cloud Service Add WorkerRole F5 (run) In step 3, If I press ctrl+f5 (run without debug) instead f5 (run) every things is ok, but can't use the…
Julian50
  • 2,462
  • 1
  • 21
  • 30
1
vote
1 answer

Remote debugging of multi threaded Python Applications

How can I do remote debugging of a multi threaded Python application, running on an Embedded Linux based system, from Windows XP or Vista? So far I have only come across PyScripter based remote debugging. How does it perform?
bhadra
  • 12,887
  • 10
  • 54
  • 47
1
vote
1 answer

Remote debug DotNetNuke (DNN) module on azure wesbite

I created a DNN website on azure from the gallery on azure. I then created a custom module using aspnet/C# within VS2013. I was able to properly build this and deploy the files (using FTP) to my DNN on azure and add the module to a page. So…
Al Belmondo
  • 764
  • 10
  • 26
1
vote
0 answers

XDebug PHP with Sublime Text 3 - Debuging not working - Permission Denied

I'm trying to debug my php with sublime text and I got some permission denied problems. I did all installation and the phpinfo() says xdebug is working perfect. My project.settings config is this one: { "folders": [ { …
1
vote
0 answers

Debugging Windows application on target computer

A software program we developed randomly comes up with " has stopped working". It is written in C# .NET project. This happens at somee point when using the software (some random unexplained point, sometimes 2 minutes into using the program,…
1
vote
1 answer

Debugging websites on stock Android browser (not Chrome!)

The question is simple: how to debug a website on Android stock browser? I know about the remote debugging feature, but it's only available through Chrome for Android (pretty useless for me - website is displayed improperly only on stock browser).
Rafał Swacha
  • 482
  • 2
  • 6
  • 20
1 2 3
99
100