Reputation: 11140
I have a .NET application running in the target machine. the problem is that, it's firewalled and can't be accessed directly through the developer network. There's a terminal server connected in between this were it acts as a bridge between these two networks. I want to debug from my developer PC to the target PC using remote debugging facilities in Visual Studio/WinDBG. Is it possible?Screenshot http://img822.imageshack.us/img822/9767/connectiono.png
Upvotes: 1
Views: 642
Reputation: 22030
I don't know of any channeling mechanism that can go through RDP, but perhaps the following setting can be a bearable workaround:
This is far from ideal - no doubt the easiest way to debug is on the dev machine. However, it saves you from moving source files around, and since WinDbg is portable, you don't have to do heavy installations on a non-dev machine.
Upvotes: 1