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
2 answers

Debugging Chrome on Android stopped working after updating to Chrome 39 on desktop

Debugging Chrome on my Android has been working great for the last several months, with all the same settings and hardware. Then today I tried to debug chrome on android from chrome://inspect/#devices and I got a message saying my desktop chrome…
1
vote
0 answers

django debug toolbar Logging at POST Request

I am new to web develpment so forgive me if that question may be obvious or stupid. I managed to get the django debug toobar running and it shows the logs all right on a GET request. When I do a POST request the django debug toolbar does not show…
1
vote
1 answer

Weinre Target Not Connected after page change

I'm using Weinre to Debug my PhoneGap App locally. I've enabled Debug on Adobe Build, and when I run the App, I am able to connect and debug using the Weinre interface: Everything works great until I navigate to a new page in my app. Then, I am…
1
vote
1 answer

Why can't Visual Studio 2013 see the Remote Debugger running on my Surface?

I am trying to install and run my Windows Store app on a real Surface RT device. I have installed the Remote Debugger for ARM and its running, with no authentication on 4018. Visual Studio fails to see the device, fails to connect and deploy. In…
Luke Puplett
  • 42,091
  • 47
  • 181
  • 266
1
vote
1 answer

Remote debugging showing android device but not inspect option samsung tab gt-p5100

Hi I'am working on phonegap. I have two devices Samsung S3 (android 4.4) and Samsung tab GT-PT5100(android 4.2) my problem is when I connect S3 my device shows and I can inspect my app but when I try to connect Samsung tab I can view my device but…
skhurams
  • 2,133
  • 7
  • 45
  • 82
1
vote
2 answers

Problem connecting Instruments to my iPod (touch) device

I'm having a bit of trouble connecting intstruments to my App on a iPod touch device. Whilst debugging in the Simulator is possible, I get this error in instruments when trying to start a app: Target failed to run: Remote exception encountered :…
mana
  • 6,347
  • 6
  • 50
  • 70
1
vote
1 answer

Eclipse Nsight: Insisting synchronization error

I'm getting really often the following message from Eclipse Nsight when I try to compile my code on a remote target system (in particular, a Jetson TK1): I guess it happened because the remote system crashed in the middle of synchronization and I…
Pantelis Sopasakis
  • 1,902
  • 5
  • 26
  • 45
1
vote
0 answers

Debugging local Django app outside server root in Pycharm

Is it possible to debug (e.g. stop on breakpoints) an external Django app when running a Django server in a VM via remote debugging in Pycharm? I am able to run and debug the Django server using PyCharm's remote debugger, and the app runs as…
1
vote
1 answer

remote debug read log from remote project in eclipse

i use remote debug in eclipse to connect remote server. the script is java -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=60016,server=y,suspend=y -jar positioning-terminal-service-0.0.1-SNAPSHOT.jar my local system is windows and debug…
王奕然
  • 3,891
  • 6
  • 41
  • 62
1
vote
1 answer

Native Android GDB remote debug got SIGILL

Software: Official TI android release (source code package), Jelly bean 4.2.2 for AM335x, (Yes, arago/rowboat/TI developers add modifications to vanilla aosp but not relevant to my question.) Hardware: am335xevm_sk (a TI dev booard based on AM335x…
matianfu
  • 366
  • 2
  • 6
  • 15
1
vote
0 answers

GDB remote debugging with gdbserver on zynq zc702: not listing the correct source code

I am trying to do GDB remote debugging using gdbserver, but cannot get the debugger to break at and list the correct source code. I am not sure of what I might be doing wrong so I am writing everything that I have done. I have just started using…
Aryan
  • 55
  • 8
1
vote
2 answers

debug application in production

In my development environment my application runs, then when I installed it in a client machine it is not starting, my only idea to see the reason was to show a message box with the exception: AppDomain.CurrentDomain.UnhandledException …
bto.rdz
  • 6,636
  • 4
  • 35
  • 52
1
vote
0 answers

Node debugging remote debugging

I have set up a Ubuntu 12.04 Virtual Box with MongoDB 2.4.8 and node. It is configured and run by Vagrant. My project skelletion was created with angular-fullstack (coffeescript client side, less, ui-router, mongoose and authentication). After…
andreas
  • 1,483
  • 1
  • 15
  • 36
1
vote
1 answer

Where are orientation change event listeners shown in Chrome dev tools?

I want to check that I'm indeed setting orientation-change event listeners for a webpage on an Android tablet, but I don't know where this would appear in Chrome dev tools. I'm not seeing them in the Event Listeners panel of the Elements tab, but…
1
vote
2 answers

how to set xdebug HTTP request from another client

I'm using xdebug to debug a remote server. Let's say I have a server S a client to debug on IDE C1 another client C2 which sends HTTP requests to server How can I debug the requests sent by C2, on my pc C1 ?
Cihad Turhan
  • 2,749
  • 6
  • 28
  • 45
1 2 3
99
100