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!

[407 byte] By [rerere34545a] at [2007-10-1 21:45:01]
# 1
http://forum.java.sun.com/thread.jspa?threadID=617231&messageID=3444235Change the files that need caching to .class or .jar, I think .jpg and .gif will allso be cached.
harmmeijera at 2007-7-13 7:47:49 > top of Java-index,Security,Signed Applets...
# 2
And please don't double post http://forum.java.sun.com/thread.jspa?threadID=655901&messageID=3855562#3855562 http://forum.java.sun.com/thread.jspa?threadID=655903&messageID=3855567#3855567
harmmeijera at 2007-7-13 7:47:49 > top of Java-index,Security,Signed Applets...
# 3

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

rerere34545a at 2007-7-13 7:47:49 > top of Java-index,Security,Signed Applets...
# 4

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

harmmeijera at 2007-7-13 7:47:49 > top of Java-index,Security,Signed Applets...