I would like to create an applet which can raed and write file to get data. But as the security rule this is not allowed unless we uses signed applet or something like that.
But here I don't want to access or write things on clients side, I just want to get data from the local server side.
So is there any simple way to overcome this simple requirement (write data in the local server)
This topic has been addressed... Check out the response involving passing info. from an Applet to a Servlet which then has access to the File System...
"How i put an applet on the web, which is communicate with a database"
posted by Periklis. ricky had a great response with example code. Only difference is instead of connecting to a database, you'll open a FileStream with write capabilities. Your applet connects to a servlet which then writes stuff to the file.
Your best bet is to go through the code that ricky posted in order to get a better understanding.