Re: writing a file in the client's system from a servlet
Posted By:
Erik_Runia
Posted On:
Monday, April 15, 2002 01:44 PM
Write the file to your servers hard disk.. give it an id number that you can write to the clients cookies... next time they come back you can match their cookie id number to the file on your drive and pull the data for them...
Re: writing a file in the client's system from a servlet
Posted By:
Benoit_Quintin
Posted On:
Friday, April 12, 2002 06:38 AM
You don't. Servlet's are run on the server, hence the name SERVlet. You have cookies on the client's machine. Or a signed and trusted applet that has some access.