IE 11 Java Issue

1

I have installed IE11 in my Windows 7 Professional. But IE 11 (64 bit) is not detecting the installed Java, and it always asks me to install the JRE 6 update. In my machine, I have installed JDK 8 update 73

This is my JS code

alert(page);
document.write("<OBJECT codeBase=http://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab classid=clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284 height=0 width=0>");
document.write("<PARAM name=app VALUE=" + page + ">");
document.write("<PARAM NAME=back VALUE=false>");
document.write("</OBJECT>");

The classid mentioned here is Java's registry path and I am passing my page here as value which will download JNLP to launch my application. It works fine on some machines and it asks me to install JRE 6, which is not allowed for security reasons. Can I tweak some configuration in my machine so that I can launch the application?

user563864

Posted 2016-02-26T08:13:30.153

Reputation: 11

No answers