JRE 6.0 - Applet Issue

Hi,

I used to run an Applet(on browser) in JRE 1.5, wherein I will be downlaoding a serialized file from the server and deserializing it and will be runing inside the applet.

I updated to JRE6 two days back, after which the serialized file is downloaded once for the session(for a browser), after that when I try to run the applet again on the same browser, the serialized file is not pulled from the server but from a cache.

How do I invalidate the ser file in the cache and download it everytime I run my applet (on browser).

Thanks

- Gana

[578 byte] By [Ganaa] at [2007-11-27 4:21:05]
# 1

if you are developing a web application, so add the following meta tags to the header of your web page (jsp, html, ...):

<head>

<meta http-equiv="cache-control" content="no-cache"/>

<meta Pragma="no-cache" />

</head>

Remove manually the temporary Internet Files and configure your browser to remove them once it's closed.

IExplorer:

Tools > Internet Options > Parameters > ...

Mozilla Firefox:

Tools > Options > Privacy > ...

java_2006a at 2007-7-12 9:28:14 > top of Java-index,Desktop,Runtime Environment...
# 2
Thanks,Y is it happening after JRE update to 6.When running 1.5 I didnt had this issue.- Gana
Ganaa at 2007-7-12 9:28:14 > top of Java-index,Desktop,Runtime Environment...