http://www.perlmonks.org?node_id=463888


in reply to Perl with Java applet

Depends on your applet...
Normally applets receive their parameters in the HTML-Code, that is calling them. The way the data is passed (e.g. Parameter names) should be specified in your applet.

Replies are listed 'Best First'.
Re^2: Perl with Java applet
by Anonymous Monk on Jun 06, 2005 at 12:43 UTC
    Could the applet passed the data back to Perl? I mean the data might be modified, so could the modified data pass back to perl and updated MySQL

      Passing data with param is strictly one way. To send data from the applet back to the server you'll need to start making HTTP requests from the applet (possibly via SOAP as I mentioned before), or running some other server software running whatever protocol you want.