in reply to How to monitor internet speed in real time?

Perhaps you might like to do a java applet that synchronizes with a perl script at the serverside. And that keeps drawing some graphics of the traffic. The applet starts when the user loads the page. The java applet is working at the user's side.

.{\('v')/}
_`(___)' __________________________
Wherever I lay my KNOPPIX disk, a new FREE LINUX nation could be established.
  • Comment on Re: How to monitor internet speed in real time?

Replies are listed 'Best First'.
Re^2: How to monitor internet speed in real time?
by rockmountain (Sexton) on Oct 06, 2004 at 07:26 UTC
    Hey,can you tell me something in perl. I don't know java enough. But I must tell you, you hit the bull's eye
    cheers Rock
      Well, the JAVA applet is an example to show you that JAVA applets work from the users side of all.

      So, your server creates the page that contains a JAVA applet (you might find it from the plenty of JAVA stuff in the web). And then the user loads that html page and the applet starts working connected with your server (just sending pings or some other thing, don't know).

      From the applet's JAVA side I could inform you just what you need to know: that it works with some parameters that your server writes in the html page. The parameters that the applet needs (as any perl script). Then, with this parameters it starts working when the user loads the html page. JAVA works inside a 'sandbox' that doesn't compromise any other part of the users machine. So it is safe and should provide you with what you need at the server side.

      Hope that it helps!

      .{\('v')/}
      _`(___)' __________________________
      Wherever I lay my KNOPPIX disk, a new FREE LINUX nation could be established.