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

Developer Environment for Developing CKAN Plugins

We are going to start doing a reasonable amount of development on some customization of CKAN via plugins. Are there any CKAN developer recommendations, hints, tips and/or tricks that people use when developing plugins for CKAN? Things that we are…
hooknc
  • 4,854
  • 5
  • 31
  • 60
1
vote
2 answers

cordova: How to debug app remotely?

My client located on a remote distance and having an issue with my app. I want to debug this app remotely in his phone. Is this really possible? If so then how can we do that?
user2899728
  • 2,099
  • 4
  • 16
  • 28
1
vote
1 answer

Remote debugging an android application

I'm having a two systems[System A, System B] each connected via wifi . Each system has got android studio installed. Is it possible by any means that I can run my app on System B while using System A for development? In short, I wanna access the…
user6517192
1
vote
0 answers

Remote Debugging can't be remove from Ionic/ Cordova App after Final Release Version

I am unable to remove my app from chrome://inspect remote debugging after final release version of apk! Anyone any idea how make it possible for security reason? -I already signed it with my keystore file Thanks
1
vote
1 answer

Why doesn't "Attach to Process" allow other transport types? VS 2008

A co-worker posted this on an MS forum but was not able to get an answer. He's using Win7, VS 2008 (C++) pro - not the express version. When he selects Tools->Attach to Process the dlg box with the dropdown for "Transport" shows only "default" and…
Tim
  • 20,184
  • 24
  • 117
  • 214
1
vote
1 answer

How can I call 'super' from 'define_method'?

I'm trying to prepend a binding.remote_pry to all methods from all classes of my application for a test environment. I try this: classes = [] ObjectSpace.each_object { |o| classes << o if o.class == Class } classes.each do |classe| …
1
vote
2 answers

Is it possible to reload a debug assembly and re-attach to process?

If I attach to a application's process and debug, then stop debugging, and recompile a dependent assembly, is it possible to add logic to my application which does an unload/re-load to that assembly such that I'll be able to re-attach to the…
Aaron Anodide
  • 16,906
  • 15
  • 62
  • 121
1
vote
0 answers

Standalone Android toolchain doesn't provide gdb binary

Android NDK, since 11 version, doesn't provide gdb binary. (NDK v10.e has it.) How to debug native code via standalone toolchain that I use for build if standalone toolchain doesn't provide gdb binary ? Do I have to build gdb from sources from…
sergs
  • 123
  • 1
  • 12
1
vote
1 answer

How to attach visual studio 2015 debugger to previously deployed asp.net core docker container

I have used the docker support extension for visual studio 2015 and it works great. I am able to launch and debug asp.net core app from visual studio. I would like to know if there is a way to reattach the visual studio debugger to the docker…
longday
  • 4,075
  • 4
  • 28
  • 35
1
vote
1 answer

Anyone managed to do cross remote debug in zend studio?

I have two projects A and B . My debug starts by accessing a url of A,and breakpoint works.And A need to curl B,how can I make it stop there?
justnobody
  • 327
  • 2
  • 9
1
vote
3 answers

VS2015 Unable to connect remote debugger

I have VS2015 locally. Windows 2012 R2 server hosting an IIS8 test website. I've put the updated DLL and PDB files in the BIN of the test website. Step 1) On the remote server, I make sure the Remote Debugger is started. Step 2) While in VS, I…
adam
  • 2,930
  • 7
  • 54
  • 89
1
vote
1 answer

The project needs to be deployed before it can be started remote debugging

i'm trying to remote debug my windows tablet store app and when i go to debug it on the remote machine i get this error. i have done both ways it asks me to fix it in the image but i keep getting the same result. the tablet has the remote manager…
1
vote
0 answers

Remote debugging doesn't work properly

In Visual Studio 2010, I'm using Remote Debugger to debug my program. It's weird that F10 works and steps over code lines, but no breakpoint is hit. Running the program by F5 causes the program to run neglecting all breakpoints. why?
hamidi
  • 1,611
  • 1
  • 15
  • 28
1
vote
0 answers

debug configurations tab in mars eclipse in ubuntu 16 not working?

When I'm going to configure debugger in eclipse for my java application, I get this error. It is working fine in ubuntu 14 , but in ubuntu 16 it creates this problem. What should I have to change in my eclipse settings to make it work? Thanks
unknownbits
  • 2,855
  • 10
  • 41
  • 81
1
vote
0 answers

Spark on Yarn remote debugging in intellij idea

I need to debug my scala/spark application running using yarn client mode. I am not sure how to do this in intellig idea..follwing this https://community.hortonworks.com/articles/15030/spark-remote-debugging.html it is however work for eclispe. I…
Mahdi
  • 787
  • 1
  • 8
  • 33