Hi,
My code about generate requests simulation, I have to send 400 requests from client to server , I used TCP connection but in some times the server waite from client and the client also waite the response from the server ?
should I use inter-process communication between client and server ,How can I implemnt this .
for (int i=0;i<=400)
{
//send object to server
thread.sleep(-1*Math.log(Math.random());
//receive response object from the server
}
I have to generate my requests exponintially.
Thanks
