-
Bug
-
Resolution: Fixed
-
P3
-
7
-
b08
-
x86
-
windows_xp
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2214730 | 8 | Henry Jen | P3 | Closed | Fixed | b12 |
FULL PRODUCT VERSION :
java version "1.7.0"
Java(TM) SE Runtime Environment (build 1.7.0-b147)
Java HotSpot(TM) Client VM (build 21.0-b17, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600]
EXTRA RELEVANT SYSTEM CONFIGURATION :
Installed Java 1.6.0_26-b03
Afterwards installed Java 1.7.0-b147
A DESCRIPTION OF THE PROBLEM :
After installing Java 1.7.0 (additionally to and after 1.6.0_26) the browser will use Java plugin version 1.7.0 / 10.0.0.147 to run applets. When the applet specifies a family JRE version like 1.6.0 the plugin correctly uses the latest installed 1.6.0 JRE to run that applet. However, the following can be observed in this scenario (scenario 1):
Scenario 1:
1. Java Console says:
Java-Plug-in 10.0.0.147
JRE-Version 1.6.0_26-b03
(correct)
2. Pressing "s" in the Java console to print the deployment properties displays deployment.jpi.mode.new = true
(which is correct - the new plugin2 is set to be used in the Java Control Panel).
3. If the applet executes System.getProperty("deployment.jpi.mode.new") this returns null! (and thus reading the value via Boolean.getBoolean returns false)
=> bug
Scenario 2:
If one disables the next-generation Java plugin in Java 1.7 then Java 1.6.0_26 is used for executing the applet (per the applet's JRE family version setting). However, if the applet executes System.getProperty("deployment.jpi.mode.new") this returns true! (which is obviously incorrect)
The browser (IE8) has been restarted after changing the setting for next-generation Java plugin usage.
REGRESSION. Last worked in version 6u26
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
see above.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Scenario 1: System.getProperty("deployment.jpi.mode.new") should return "true" (instead of null)
Scenario 2: System.getProperty("deployment.jpi.mode.new") should return "false" (instead of "true")
ACTUAL -
Scenario 1: System.getProperty("deployment.jpi.mode.new") returns null
Scenario 2: System.getProperty("deployment.jpi.mode.new") returns "true"
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
/*
* Run this applet with the following class-id to request to be executed by JRE 1.6. The system to run the applet should have 1.6 >= 1.6.0_10 and 1.7.0 installed.
*/
public class TestApplet extends java.applet.Applet {
public TestApplet() {
}
public void init() {
System.out.println("deployment.jpi.mode.new=" + System.getProperty("deployment.jpi.mode.new"));
}
public void start() {
}
}
---------- END SOURCE ----------
java version "1.7.0"
Java(TM) SE Runtime Environment (build 1.7.0-b147)
Java HotSpot(TM) Client VM (build 21.0-b17, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600]
EXTRA RELEVANT SYSTEM CONFIGURATION :
Installed Java 1.6.0_26-b03
Afterwards installed Java 1.7.0-b147
A DESCRIPTION OF THE PROBLEM :
After installing Java 1.7.0 (additionally to and after 1.6.0_26) the browser will use Java plugin version 1.7.0 / 10.0.0.147 to run applets. When the applet specifies a family JRE version like 1.6.0 the plugin correctly uses the latest installed 1.6.0 JRE to run that applet. However, the following can be observed in this scenario (scenario 1):
Scenario 1:
1. Java Console says:
Java-Plug-in 10.0.0.147
JRE-Version 1.6.0_26-b03
(correct)
2. Pressing "s" in the Java console to print the deployment properties displays deployment.jpi.mode.new = true
(which is correct - the new plugin2 is set to be used in the Java Control Panel).
3. If the applet executes System.getProperty("deployment.jpi.mode.new") this returns null! (and thus reading the value via Boolean.getBoolean returns false)
=> bug
Scenario 2:
If one disables the next-generation Java plugin in Java 1.7 then Java 1.6.0_26 is used for executing the applet (per the applet's JRE family version setting). However, if the applet executes System.getProperty("deployment.jpi.mode.new") this returns true! (which is obviously incorrect)
The browser (IE8) has been restarted after changing the setting for next-generation Java plugin usage.
REGRESSION. Last worked in version 6u26
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
see above.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Scenario 1: System.getProperty("deployment.jpi.mode.new") should return "true" (instead of null)
Scenario 2: System.getProperty("deployment.jpi.mode.new") should return "false" (instead of "true")
ACTUAL -
Scenario 1: System.getProperty("deployment.jpi.mode.new") returns null
Scenario 2: System.getProperty("deployment.jpi.mode.new") returns "true"
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
/*
* Run this applet with the following class-id to request to be executed by JRE 1.6. The system to run the applet should have 1.6 >= 1.6.0_10 and 1.7.0 installed.
*/
public class TestApplet extends java.applet.Applet {
public TestApplet() {
}
public void init() {
System.out.println("deployment.jpi.mode.new=" + System.getProperty("deployment.jpi.mode.new"));
}
public void start() {
}
}
---------- END SOURCE ----------
- backported by
-
JDK-2214730 System property deployment.jpi.mode.new is not set correctly
-
- Closed
-