Netbeans - Debugging client server application
Hello,
I am new to Java and netbeans. I am writing a Java NIO, client/server application. Trying to run and debug the same. I have two projects, one client and the other server. I start the server in debug mode, enable a breakpoint, switch the project so that client project is active. Then run the client in debug mode. I have a breakpoint in the server where it reads the data from the channel. After I execute the write from the client, the data doesn't seem to get to server. The server is receiving 0 bytes, even though the client claims to have written 8192. Is there a way to simultaneously debug both client and server?
Any inputs is appreciated.
Jaysun.

