jnlp - Java Web Start is unable to automatically download and install the requested version -
i have java 1.6 update 30 installed on desktop.
the jnlp specifies minimum java version java 1.7.
however error
java web start error: application has requested version of jre (version 1.7+) not locally installed. java web start unableautomatically download , install requested version. jre must installed manually.
update:
what error mean? how can force or suggest java 7 install?
it fine if user redirected http://java.com/en/download/index.jsp
i know that can achieved deployjava.js
thanks!
- add following line jnlp file
<java href="http://java.sun.com/products/autodl/j2se" version="1.7+" >
- modify landing page following code
add java script in header
<script src="http://www.java.com/js/deployjava.js"></script>
in html document body
<p><script> var url="url of jnlp file "; deployjava.createwebstartlaunchbutton(url,'1.7.0');</script></p>
for more information please @ deploy rich internet application
i hope fix issue
Comments
Post a Comment