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

Dump several processes simultaneously when one process runs on a server

I have a client program that communicates via a local Windows service to a server process. These three programs are implemented by ourselves. To analyze an error situation, I'd like to take crash-dumps of all three processes at once, so that there…
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
1
vote
1 answer

how to do remote kernel degugging on Maverics 10.9 OSX using lldb?

I am trying to do remote-kernel-debugging. I am using two VM. I have Leopard OSX 10.9 on both VMs and I also installed KDK(kernel debug kit as per the system version). On the VMs to be debugged I have used the following instruction to start…
1
vote
0 answers

Breakpoint not getting hit in Visual Studio Kernel driver debugger

After putting a lot of effort I successfully fixed Visual Studio crash trying to start debugging the remote kernel app by installing Windows 10.0.10586 on both Host and Remote computers. Now the driver gets installed and Visual Studio starts its…
Javid
  • 2,755
  • 2
  • 33
  • 60
1
vote
1 answer

React-Native android: Debugging options?

I keep receiving a 401 unauthorised response from my android application. When I use the remote debugging from the emulator I am unable to view the network requests. Is it possible to view network requests from the emulator's remote debugger? If not…
Larney
  • 1,674
  • 4
  • 23
  • 47
1
vote
0 answers

Debugging Web API application on CodeMirror

I am currently developing an ERP all in one web application in AngularJS. Client will design, develop ERP modules there. I am using codeMirror to edit server side C# code to client. Also have intellisense and compile options. But now I want to add…
1
vote
1 answer

Visual studio cannot connect to windows IoT raspberry pi

I am using Windows Insider Build 14342 windows 10 OS. Trying to connect to raspberry pi 3. I have installed the Iot Core in Raspberry and I can connect to the device using putty and powershell. The visual studio for some reason doesnt deploy my…
1
vote
1 answer

Using IIS7 and vs2010 to do remote debugging with MVC2 and Windows Authentication

What I am doing I am building an MVC2 website with Windows Authentication using Visual Studio 2010. I want to debug the website using IIS7 and access it from a browser in a virtual machine (in order to sign in using different users with different…
1
vote
1 answer

Remote Debug .NET dll

I have a class library project done in visual studio 2012. When building this project, a dll is generated. This dll is deployed in a machine that is in the local network and is consumed by an application that I have no control (third-party). Is…
Vinicius Gonçalves
  • 2,514
  • 1
  • 29
  • 54
1
vote
1 answer

Unable to remote debug asp.net mvc core application on IIS8 (AWS EC2)

I have an MVC core website written in C# which is deployed to an AWS EC2 Instance with Windows Server 2012 R2 and IIS8 deployed on it. I am trying to remote debug the application as I am getting errors thrown which I don't when running locally…
Chris
  • 598
  • 8
  • 23
1
vote
1 answer

How to remotely debug Node.js app with source maps (using WebStorm)

I struggling to debug remotely piece of node.js code that got translated from ES6 with BabelJs. Here's the situation: I have a project with ES6 source file server\app.js that gets translated to ES5 and put to dist\server\app.js along with…
Maciej
  • 578
  • 4
  • 12
1
vote
1 answer

Remote debugging node app in Docker

I've managed to connect remotely with debugger to app running in Docker container but I am experiencing very strange behaviour: when I put a breakpoint in line number 5 in my index.js file it breaks in various (potentially all) index.js and…
1
vote
0 answers

Can I show fingers on Screencast for Android remote debugging in Chrome?

I'm working on touch events in Android webview and will give a presentation. Is there a way for me to show fingers on screencast in Developer Tools? So that my audience can see where my fingers are on the screen.
JasmineOT
  • 1,978
  • 2
  • 20
  • 30
1
vote
0 answers

Eclipse crashes on creating a new Remote Java Application

Does anyone know what is happening here? I need to debug something specific on the server side but I can't create the Remote Java application. Eclipse Juno and Windows 10. Java 1.8.0_66-b18
mannuk
  • 1,259
  • 5
  • 21
  • 43
1
vote
1 answer

Including sourcecode for debugging from other project in eclipse

i got 2 independent Java Projects in Eclipse. One is built to a Jar and is later on included as a library in the other (main) project. So when i start the main project and attach a remote debugger on it, i need to put a breakpoint on one line of the…
Gobliins
  • 3,848
  • 16
  • 67
  • 122
1
vote
1 answer

Arquillian remote debugging in IntelliJ (WildFly)

I know that we can configure an arquillian container inside IntelliJ which in turn will run an embedded wildfly to execute arquillian tests. What I am trying to achieve is how can I bypass the container and run arquillian tests against a remote…