deployjava

Trouble to display deployJava button on ajax rerender

﹥>﹥吖頭↗ 提交于 2019-12-11 05:56:26
问题 I'm having trouble displaying the deploy-java button on ajax rerender <h:form id="deployJavaForm" rendered="#{myBean.shouldRender}"> <h:outputScript library="js" name="http://java.com/js/deployJava.js" target="head" /> <script type="text/javascript"> deployJava.createWebStartLaunchButton('blah.jnlp', '1.7.0'); </script> </h:form> when myBean.shouldRender == true and the form is updated the only thing being displayed (on a white page) is the deployJava-button and the request is left hanging.

deployJava.js not detecting JRE in IE 11

馋奶兔 提交于 2019-12-05 22:49:29
问题 I'm using deployJava.js to include applets like so: <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 (in Windows 7, I'm not sure about windows 8.1) have complained that it will automatically forward them

deployJava.js not detecting JRE in IE 11

泄露秘密 提交于 2019-12-04 04:32:42
I'm using deployJava.js to include applets like so: <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 (in Windows 7, I'm not sure about windows 8.1) have complained that it will automatically forward them to the Java download page (before the applet loads) even though the latest java is already installed.