| Author |
RecordStore equivalent for Applet?
|
James Hodgkiss
Ranch Hand
Joined: Jan 22, 2004
Posts: 401
|
|
Can anyone suggest how I might best mimic a midlets recordstore in a jdk1.1.8 applet? Basically, just need the persistent storage of a few Strings. Applet will be unsigned. Cheers, James
|
 |
James Hodgkiss
Ranch Hand
Joined: Jan 22, 2004
Posts: 401
|
|
To put he question another way: Does anyone know how I can achieve persistent storage in an applet (jdk1.1.8)? Thanks, James
|
 |
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35220
|
posted

0
|
|
Either directly into a DB sitting on the same host where the applet is served from, or through a servlet on that host into a DB sitting anywhere.
|
Android apps – ImageJ plugins – Java web charts
|
 |
James Hodgkiss
Ranch Hand
Joined: Jan 22, 2004
Posts: 401
|
|
Thanks Ulf, I'll do it via a servlet. Do you know if the servlet url can be specified as an absolute url or must it be relative? Thanks, James
|
 |
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35220
|
posted

0
|
|
Since the context you're coming from is an applet on a different machine, you need to use absolute URLs.
|
 |
 |
|
|
subject: RecordStore equivalent for Applet?
|
|
|