I am trying to make a simple ping test between the client and the web server. Right now, I am only sending get request and waiting for an answer but this is not accurate at all. I know there is no way with JS to send an ICMP ping.
But is there a way to know how much time the server took to process the request ? If I can get that I could have a pretty good estimate of a ping.
I want to get the time it took to process the request on the server and that does not include the time for the packets to travel. Because the travel time is what I want.
Should I use another language ?
rXp