vote up 0 vote down star
1

In the Java Control Panel on Windows there are settings for "temporary internet files" wherein all the applets and webstart stuff is cached. For certain users of our application this caching doesn't work properly and they need to delete all the files through the control panel before our webstart application will update itself properly.

Overlooking the other implications of doing so, is there anyway we can programmatically delete the temporary file cache when we do an update, preferably through Java and without resorting to any batch file or Windows hackery quackery?

flag

2 Answers

vote up 4 vote down check

For a web start application (such as you're talking about):

javaws -uninstall

You can also uninstall a specific Web Start application by providing the URL to the JNLP on the -unintall command line.

When I've run into this problem, the root cause was a web server incorrectly applying an incorrect expiration date for the Web Start's JAR files. When I corrected this problem with my Apache HTTPD configuration, I stopped having the Web Start application not always update. It's worth checking out.

link|flag
Two things for me to go on. Thanks very much. – banjollity May 24 at 21:12
vote up 0 vote down

Take a look at the jnlp download service api

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.