hv2
hv2

Reputation: 41

JRE-9 deprecate browser plug-in - Can web start (JNLP) run directly in JRE-9?

As Java claimed JRE-9 would deprecate support of Java Browser Plug-in, I tried to disable "Browser plug-in' it Java Control Panel. (like figure below)

Then all existing web start JNLP can't run anymore.

like example in: Deploying a Java Web Start Application

Would anyone has idea how to handle your applet/web start under JRE 9 / Java9?

For more information please see the below screenshot of disable java browser plug-in.

enter image description here

Upvotes: 4

Views: 541

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168825

Java Web Start has always (since its inception) supported free floating (outside the browser) frames (e.g. java.awt.Frame & javax.swing.JFrame) & applets (e.g java.applet.Applet & javax.swing.JApplet).

That should still work, though it was always the case that free floating applets could not access the JSObject or (thereby) interact with any web page.

Upvotes: 2

Related Questions