I have a java applet that runs fine locally on my desktop computer. but when I put it on my linux web server its works but the save file feature is save the file to the web browser temp folder and not to the web server.
<applet name="rapplet" type="applet" archive="applets.jar"
code="acap.class" codebase="." height="96" width="150">
<param name="msg" value="test.snd" />
You need:
Update: you seem to have missed the point of Java applets – they run on the client. In the browser, that is. They have absolutely nothing to do with servers. If you want to have any communication with a server, you need some protocol – it could be HTTP (as I suggested), it could be plain sockets, or any other protocol that suits you.