Getting Client To Automatically Send Data To Server
i am running a server side application which receives data of ping done from client side to certain ip addresses. Currently a person goes to these clients and does the ping manuall
Solution 1:
i want to run a screipt which makes the clients machine send a ping request to these sites and the latency and package loss needs to be reported.
I don't think you can get hold of such low-level information from within Javascript.
What you could do is speed tests in the style of http://speedtest.net, which send data back and forth using JS or Flas. However, I expect a proper speed test is not trivial to implement. I think there are providers who re-sell their ready-made speed testing solutions if that's an option.
Other than that, depending on your situation, maybe consider writing an executable program that calls the system's ping
command and transmits the results to you. That would require client-side installation though, of course.
Post a Comment for "Getting Client To Automatically Send Data To Server"