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

Remote Debug - Visual Studio Publish vs Release Management Deploy

I have a web app that I'm trying to debug remotely. I'm using VS 2015. I have the Remote Debugging tools for VS 2015 installed on the server. I can successfully debug the app if I deploy it to the server using the VS2015 Publish function. The…
1
vote
0 answers

Connection refused after connection timeout - Remote Java debugging

I have a Websphere server with remote debugging enabled. Sometimes, when I try to connect to my debugger, I get: Failed to connect to remote VM. Connection timeout. After I receive this message, I always get: Failed to connect to remote VM.…
Sergio PM
  • 11
  • 1
1
vote
0 answers

How to debug *.ashx file which is on server

i've got *.ashx file on the server which is a help service for my applications. I try to debug this file localy from Visual Studio. I set the breakpoints and then i attach to proces w3wp.exe which is running on the server but after visual studio…
Darek
  • 11
  • 3
1
vote
1 answer

Debugger for DSL

At my company, we have a DSL to represent a data flow network. I'm looking into ways to make this environment more debuggable (not only native C++, since that would throw you out of the domain view). Are there existing debugger 'frontends' that I…
xtofl
  • 40,723
  • 12
  • 105
  • 192
1
vote
0 answers

Screen sharing Integration in HTML5 LOB?

I’m just wondering if anyone knows of any screen sharing packages out there that will integrate into a HTML5 based line of business app. The use case is if a user calls in they can just click share screen with support and the support person in here…
Matt
  • 3,305
  • 11
  • 54
  • 98
1
vote
2 answers

DEP0100 - deployment failed due to a developer licensing issue windows 10 while trying to remote a windows store app

When I try to deploy a windows 10 app using remote debugger, I get this error "DEP0100 - deployment failed due to a developer licensing issue windows 10 while trying to remote a windows store app." From what I understand, there is no concept of…
1
vote
2 answers

How to debug an app running in assigned access mode on a windows 10 machine?

I am trying to analyse a crash on a windows 10 universal app running on a windows 10 PC using assigned app. Now that only one app can run at a time , in assigned access mode, I cannot run VS remote debugger. Is there an alternative method to debug a…
Suneesh
  • 469
  • 7
  • 21
1
vote
2 answers

Error when connecting Visual Studio 2015 to Azure VM's remote debugger

I'm attempting to attach the Visual Studio debugger to an Azure VM. After about a minute of the fetching-processes progress dialog spinning I get the error: There was a failure to launch the remote debugger. This is the same error outlined in this…
1
vote
0 answers

D3D11 LoadLibrary fails even when DLL is present and other DX11 apps work

I have a VMWare10 VM of Win7x64 Ult, and have confirmed that DX11 is installed per the DXDIAG control panel. I have also confirmed that D3D11.dll is in System32. When the app attempts to LoadLibrary('D3D11.dll'...), however, it fails. I get back…
Dave
  • 1,521
  • 17
  • 31
1
vote
1 answer

How to use eclipse debugger to debug stacktrace of JSF core libraries?

Welcome I am extending some application written with Sprint and JSF. My work is partly writing xml config files. After some changes I got reports from library generators. Can I access with Eclipse debugger attached jars and fount what method throws…
pbrodka
  • 1,137
  • 1
  • 11
  • 23
1
vote
0 answers

Remote debugging with WinAPI

Consider we have this function: #include #include #include #include #include std::wstring get_common_appdata() { wchar_t buf[MAX_PATH + 1] = { 0 }; std::wstring path; if…
vladon
  • 8,158
  • 2
  • 47
  • 91
1
vote
1 answer

WebStorm stops on wrong file when debugging a Node.js application

I'm trying to debug a Node.js app that runs on a remote server (on my local network). Node is ran with --debug=7000 and WebStorm can connect to it without any problem. My app depends on a few Node.js modules, and some of them contain index.js files,…
FruityFred
  • 241
  • 2
  • 8
1
vote
0 answers

Remote Debugging in Qt Trought Telnet. Is It possible?

I have some device in MIPS architecture, on this device unfortunately wasn't instal any server ssh, but telnet daemon is present. I try connect to this device in goal remote debbuging but I do not can connect. Also If I try test connect. So it is…
Mbded
  • 1,754
  • 4
  • 23
  • 43
1
vote
1 answer

SpringSource Tool Suite (Eclipse-based) doesn't stop at breakpoints when remote debugging Java Web Applications using WebLogic 10.3.5

I'm using SpringSource Tool Suite (Version: 2.7.2.RELEASE) and WebLogic 10.3.5; for 2 days, I have been trying to make remote debugging work so that I can debug Java Web applications deployed on WebLogic remotely. I've searched and read a lot of…
1
vote
1 answer

batch script commands not working remotely

I have a site that using asp.net and I am trying to create a batch script and run it. I am using it to get latest files for a tfs workspace the .bat only has call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" tf get…
Nick
  • 179
  • 4
  • 13