remote-debugging

Firewall ports needed for Visual Studio 2013 Remote Debugging

和自甴很熟 提交于 2019-12-10 18:32:43
问题 I have a 3rd party firewall blocking VS 2013 Update 2 Remote Debugging. I want our domain admin to open the necessary ports, but there seems to be a discrepancy in the documentation. Online version mentions: DCOM (TCP Port 135) and IPSEC (UDP 4500 / UDP 500) Installed documentation mentions: ...To do so, allow traffic on TCP/IP ports that msvsmon.exe is listening on. By default, these are port 4018 and 4019, where 4018 is used on all operating systems, and 4019 is used only on Windows x64 to

Remotely debugging service worker on chrome android with self signed certificate

浪尽此生 提交于 2019-12-10 17:35:01
问题 I was trying to debug a service worker served from my dev machine and running inside chrome android on the smartphone. I was using the usb connection and remotely debugging from my dev machine. The service worker works only in https and I can live with that, both chrome and firefox where refusing to register the SW. Then I used a self signed certificate on my dev machine, which obviously was not trusted by the mobile browsers. They warned the certificate was not good but gave the option to

Visual Studio 2010 remote debugging - Unable to connect: Access Denied

六月ゝ 毕业季﹏ 提交于 2019-12-10 13:53:07
问题 I'm trying to remotely debug an exe, but I keep getting an error message. Here's the configuration: On the dev machine: Windows Vista 32-bit Visual Studio 2010 Firewall disabled On the remote machine: Windows 7 64-bit msvsmon.exe (shared from the dev machine) MyProgram.exe (32-bit, C#, .Net 4.0) Firewall disabled Both machines are on the same domain. I'm logged in with the same account, which has administrator rights on both machines. And here's what I do: Starting msvsmon.exe on the remote

Cannot remote debug IIS — w3wp.exe is grayed out

若如初见. 提交于 2019-12-10 13:49:01
问题 I am trying to debug an IIS Web Service using remote debugging. Because of our domain configuration (which we CANNOT change) I get an Access is denied when remote debugging via the Default option. The only solution I've found is to switch to Remote (Native only with no authentication) option in VS 2008. The problem is that when I connect to the remote system the w3wp.exe is grayed out and oddly enough it's the only one in the list that is. Does this have to do with the Remote choice? Is there

How to debug an asp.net application on live server [closed]

限于喜欢 提交于 2019-12-10 13:15:31
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I have an old asp.net web application based on .net framework 1.1, it has been deployed to live server for many years, right now I am having some issues with the live site only, the development version on my desktop works fine. So I am thinking about attach a remote debugger to

How do I attach a trace listener to a running process?

狂风中的少年 提交于 2019-12-10 13:09:38
问题 I'm not sure if this is possible in the manner I am envisioning or not so I'm hoping someone can help me wrap my head around this. I'm wanting to inject a TraceListener into a running process - kind of. I don't actually care how I attach to the process, but the end goal is to listen to the trace output of the running process and dump it out to a console window. I can attach to the process okay, and I can write a TraceListener okay... where I'm coming unstuck is the bit in the middle. Anyone

Dynamic assigning of value to macro function .pch file and checking condition .pch file

独自空忆成欢 提交于 2019-12-10 11:27:21
问题 .pch as its name shows pre-compiler header, I have defined a macro in the file so that app can decide in the very beginning of the app compilation. What I need is, possible to load any macro by assigning the values dynamically something like NSUserDefaults and checking the condition in .pch file itself. If user disable logs from screen (switch), there should be no logs else... it can print logs, least bother about Debug/Release mode. I have " #define NSLog(FORMAT, ...) TFLog((@"%s [Line %d] "

How to install Remote Tools for Visual Studio 2015 on machine not connected to the Internet

我的梦境 提交于 2019-12-10 10:05:09
问题 I have a problem with installation of Remote Tools for Visual Studio 2015 update 3 on Windows Server 2008 R2 that does not have connection to the Internet. Installator showed following error: "0x800b010a - A certificate chain could not be built to a trusted root authority." Log contains following errors: Error 0x800b010a: Failed authenticode verification of payload: C:\ProgramData\Package Cache\.unverified\rdbg_std_amd64 Error 0x800b010a: Failed to verify signature of payload: rdbg_std_amd64

How to do remote debugging of DLL in delphi 7 from scratch

♀尐吖头ヾ 提交于 2019-12-10 09:58:59
问题 can anyone please help me out, to how to do remote debugging of a DLL (Just a dll) which is independent of the exe. The dll is a service which will be running in the server machine and the DLL source code is at the client machine. Now when this service is running at the server machine i want to debug the delphi code which is at the client machine using delphi 7. 回答1: Compile the DLL with remote debugging symbols and deploy both (.dll, .rsm, etc) on the server machine Install the remote

How to debug remote v8-based application using Chrome Dev Tools

南笙酒味 提交于 2019-12-10 06:06:23
问题 v8 has its own JSON based remote-debugging protocol and two UI debuggers:console application D8 and a eclipse plugin(hosted at http://code.google.com/p/chromedevtools) Chrome use WebKit Remote Debugging Protocol including Console, DOM Debugger, ..., Debugger "WebKit Remote Debugging Protocol" is a Google Chrome/Chromium debug protocol. You will find its description at http://developers.google.com/chrome-developer-tools/docs/remote-debugging So is it possible to use the Chrome Dev Tools ships