using applet to execute a command on the server
I want my applet to run a commend on a server. If I had a java program, I would have used
Runtime.getRuntime().exec (cmd1, envArr, file)
but I have an applet. so can I make it execute the command: "perl perlfile.pl" where perlfile.pl is on http://server/path/?
the applet need some data that this perlfile creates.

