M
Mark_Galeck
Hello, some time ago I asked here why a foo.class file was cached by
browsers and so the foo.html file that references foo.class, is not
updated when I recompile foo.java. This made it difficult to debug
applets, since I see the cached version, not the last-recompiled
version. The advice I was given is not to display foo.html in
browser, for debugging purposes, but use other methods, such as
appletviewer. OK, that worked great.
But now, the question remains how to deploy an applet on my website.
If there is a bug and I substitute a newer version of foo.class on my
website, the browser still displays the old one, both IE 7 and
Firefox. Here's the foo.html code:
<OBJECT
codetype="application/java"
code=foo.class
width=100% height=100%
<PARAM NAME="cache_option" VALUE="No">
</OBJECT>
I tried to delete temporary files in IE and clear cache in Firefox, no
result, still old version of foo.class is displayed.
So, my question to you, is how do you deploy applets???, so that you
can update it and users see an updated version??
Thank you,
Mark
browsers and so the foo.html file that references foo.class, is not
updated when I recompile foo.java. This made it difficult to debug
applets, since I see the cached version, not the last-recompiled
version. The advice I was given is not to display foo.html in
browser, for debugging purposes, but use other methods, such as
appletviewer. OK, that worked great.
But now, the question remains how to deploy an applet on my website.
If there is a bug and I substitute a newer version of foo.class on my
website, the browser still displays the old one, both IE 7 and
Firefox. Here's the foo.html code:
<OBJECT
codetype="application/java"
code=foo.class
width=100% height=100%
<PARAM NAME="cache_option" VALUE="No">
</OBJECT>
I tried to delete temporary files in IE and clear cache in Firefox, no
result, still old version of foo.class is displayed.
So, my question to you, is how do you deploy applets???, so that you
can update it and users see an updated version??
Thank you,
Mark