I use deployJava.js to enable such applets:
<script> var attributes = { name:'ForrestGump', id:'ForrestGump', codebase:'java/', code:'ForrestGump', cache_archive:'ForrestGumpSigned.jar', cache_option:'Plugin', initial_focus:false, width:1, height:1 }; var parameters = { } ; var version = '1.7.0' ; deployJava.runApplet(attributes, parameters, version); </script>
Some users using IE 11 (on Windows 7, I'm not sure about Windows 8.1) complained that it would automatically redirect them to the Java download page (before loading the applet), even if the latest Java was already installed. I checked this using the Java Verification applet and setting var version = '1.1'; in js over which they say there will be no forced concrete version.
The validation applet tells me that Java is installed, and even with version = '1.1' it still redirects them. Another thing that I noticed is that the Java Uninstall Tool does not load for them. He says java is not installed. Rebooting the browser and PC does not seem to affect this.
Has anyone come across this before? Any advice on how I can disable deployJava from being redirected to the download page no matter what happens, or bypass IE 11.
java internet-explorer deployjava
William W
source share