Problem:
We need an applet that can be saved and reloaded at a later time. However, an applet can't write to a remote file system. Nor can it write to the server (unless I overlooked something). And it can't access the system's clipboard either. Unless it's signed...
Possible solution 1:
Something along the lines of this javascript bit:
newWin = window.open();
newWin.document.write(string with save info);
Is there something equivalent in Java?
Possible solution 2:
Create an xml file with the save information, and open it as a new window? I know next to nothing about using xml in Java, so if this is a reasonable/practical idea for this, does anyone have any good links I can read through about it?
Or is there another way to save/reload information that someone can think of?
Many thanks,
LF
[edit: er, I think I got lost on my way here... This was supposed to be in the server-side forum, if an MS wouldn't mind moving it please... Although I'm not 100% sure that's where this belongs anyways...]
[This message has been edited by Lord_Fukutoku (edited 11-17-2003).]