remote-debugging

Adb over wireless without usb cable at all for not rooted phones [duplicate]

China☆狼群 提交于 2019-12-28 08:06:36
问题 This question already has answers here : How can I connect to Android with ADB over TCP? (34 answers) Closed last year . I want to debug Android APPs on my phone (LG nexus 4). I'm travelling and I forgot my USB cable. When I work at home I can do it just connecting the USB cable and executing the command 'adb tcpip 5555'. Then I can unplug the USB cable and connect via 'adb connect IP'. But now I cannot execute the first command because I don't have a cable. I don't understand why I have to

How to remote debug two spring boot applications running in the same container with the same codebase but with different profiles?

那年仲夏 提交于 2019-12-25 07:59:34
问题 I have two spring boot applications running in the same container with the same codebase but with different profiles. One application is for production and the other is for test. Each application run under a different virtual host. The container is tomcat and I've added this in setenv.sh : CATALINA_OPTS="-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=n $CATALINA_OPTS" With eclipse, I can create a debug configuration for Remote Java Application. I've set the Host to the test

how to debug a web service in IntelliJ?

流过昼夜 提交于 2019-12-25 03:17:17
问题 Please correct me if I did anything wrong: I created a web service (WSDL) in Java and it has a method TestCall() . I also created a website http://testwebsite:8000/abc/index.html, and this website is calling the web service in step 1. I created a remote debugging for it in IntelliJ. I put testwebsite as the host and 8000 as the port number. Once I went to http://testwebsite:8000/abc/index.html and click on TestCall() , it didn't go to the breakpoint in IntelliJ. When I was trying to remote

Error when Visual Studio Remote Debugging with GDB

▼魔方 西西 提交于 2019-12-24 22:39:41
问题 I have a sample c++ application which builds and runs fine in a Red Hat installation. I wanted to have the source code of this application in my windows machine so I can create a Visual Studio project and use Visual Studio 2017's new features which makes it possible to build and debug programs on a Linux server. I successfully managed the following Create a 'make file' project using Visual Studio CE 2017 Connect to the remote server and build by invoking make command at the server My remote

Please verify that the remote tools are installed correctly on the remote machine

被刻印的时光 ゝ 提交于 2019-12-24 21:05:31
问题 I use Windows IoT 10 Core on Raspberry Pi 3. I develop application on Visual Studio 2015 Update 3. I have long conversation about the problem in an other post I didn't had debugger running on Windows IoT device originally and followed manual for copy and start the process. Now I have follow error: 1>------ Deploy started: Project: CurrencyExchange, Configuration: Debug ARM ------ 1>DEP0110 : Unable to check remote machine '192.168.1.17' for developer mode. Please verify that the remote tools

Error when trying to remote debug in VS2017 with MSVSMON

让人想犯罪 __ 提交于 2019-12-24 19:00:19
问题 I have installed Visual Studio 2017, and when I tried to run a web application it works fine on Internet Explorer, but in Chrome it gives me this error: the 32-bit version of the visual studio remote debugger cannot be used to debug 64-bit processes or 64-bit dumps. Please use the 64-bit version instead. I notice that MSVSMON.EXE is in C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\Remote Debugger\x64 folder, and when I click on it, it runs normally. It is

Debugging a Dart WebApp with Launch target “URL” fails

烂漫一生 提交于 2019-12-24 17:08:32
问题 I am using Dart Editor r22223 to debug a WebApp. If I launch the HTML file debugging works but if I open the HTML via URL (in my case that's http://localhost:8080/samplewebappohnewebui.html ) then debugging seems not possible. I am able the set breakpoints but the debugger does not stop at the breaktpoints. Any hints? [Update] The reason for serving the HTML-file on 8080 is that the HTML file is build by Velocity... [Update 2] OK - I added my Dev-Configuration. In the background there is

WinDbg, host machine lose network if test machine is on the same switch

给你一囗甜甜゛ 提交于 2019-12-24 08:47:11
问题 I have a really strange problem with WinDbg and would like to know if anyone can explain to me why it happens. So here is the setup: Debugging a target Windows 7 64bit machine with WinDbg Host machine running Windows 7 64bit also Host and Test machines connected via firewire Host and Test machines connected to the same switch (a Netgear gigabit switch, 8 port) Break into the test machine Problem: After about 10 seconds the host machine loses network connection What resolves the problem

Build existing C++ solution on linux using Visual Studio 2017

*爱你&永不变心* 提交于 2019-12-24 06:37:53
问题 I have have a CMake project, which I sometimes I need to build/debug on Linux. I've tried using "Linux development with C++" to connect to my Virtual Debian machine, but it doesn't work the way I want. It don't want to create a new project, I only want to generate a makefile using CMake and connect to it. https://blogs.msdn.microsoft.com/vcblog/2017/04/11/linux-development-with-c-in-visual-studio/ I've tried to read this, but it doen't tell how to connect to an existing project. 回答1: I only

connect gdb client through terminal server with authentication

↘锁芯ラ 提交于 2019-12-24 05:44:52
问题 I am trying to do remote debugging. My GDB server runs as expected (in my case it is KGDB in kernel side). KGDB hangs up well so that GDB client can connect. I need to connect GDB client using terminal server and port number because my device is connected via terminal server in real case scenario where username and password are required to get in. Hence just doing target remote terminal-server:port is not helping to connect because there is no method to supply username and password. If I