Everything is in the question. I wrote an UDP server/client and I want to debug both of them when the client sends a request to the server.
How can I achieve that !!
Everything is in the question. I wrote an UDP server/client and I want to
Share
Yes it is possible I do this all the time, when doing messaging based applications. Run each of your programs in debug mode, and make sure you are in the debug perspective where you will be able to see both apps in Debug view and can place break points.
If the client and server are running on different machines you will need to use remote debugging, which will require you to start the JVM with the remote debug options, and you will have to edit the run configuration for your client and server to enable remote debugging, check the eclipse help for the steps needed to setup remote debugging.