Applet caching
Hi all,
I have a problem with my applets. I know that there is a ticky caching provided bu the java plug-in in order to chache them in the filesystem to improve performance.
The problem is that I don't want that feature and the solution to uncheck the combobox in the java plug-in console is not accettable in my scenario.
Is there anyway to not chache applets?
Thanks a lot!
Thanks for the reply and sorry for the double post.
Actually my problem is different.
What I want is NO CACHING of the applet;
the problem is that when I deploy a nes version of the applet in the server, the new modification are not visable.
Any idea?
Thanks again for the support
Check your web server, use last-modified.
The only sure way not to use cache of any kind (including proxy) is making the
request for the jar file unique:
<PARAM NAME = ARCHIVE VALUE = "test.jar?refresh=currentDateInMilliseconds" >
You will have to script the OBJECT tag and give the jar file a GET string:
?refresh=currentDateInMilliseconds