Remote Debugging in Visual Studio (VS2008), Windows Forms Application

The problem that I had is that I had 2 users: mydomain\user1 mytestmachine\user1 that is not correct (according to Gregg Miskely) i needed to define a local user in my development computer, for example: mydevcomputer\debug mytestmachine\debug with the same password and run the VS2008 and the Debugging Monitor with this user:

Remote debug Jetty (no mvn, no plugins)

This is what we are adding to our JBoss command line while development: -Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n Then we launch the eclipse remote debugging and connection to this port. Update: To run from jar (standalone) do the following java -Xdebug -Xrunjdwp:transport=dt_socket,address=8585,server=y,suspend=n -jar start.jar

How to debug an application running in Docker with IntelliJ?

Sheesh Never mind. I didnt really need the Docker Integration plugin. Seems like that is more for deployment and management of Docker directly through Intellij than for debugging. To debug my jetty app running inside my docker container, I simply remote debugged: Run | Edit configurations | + | Remote The command line args were … Read more