-
Bug
-
Resolution: Fixed
-
P2
-
7u79, 8u45, 9
-
b82
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8141780 | emb-9 | Andy Herrick | P2 | Resolved | Fixed | team |
JDK-8147712 | 8u92 | Abhijit Saha | P2 | Resolved | Fixed | b03 |
JDK-8140810 | 8u91 | Abhijit Saha | P2 | Resolved | Fixed | b01 |
JDK-8134616 | 8u72 | Vivi An | P2 | Closed | Fixed | b01 |
JDK-8136947 | 8u71 | Abhijit Saha | P2 | Closed | Fixed | b01 |
JDK-8136934 | 8u66 | Abhijit Saha | P2 | Resolved | Fixed | b31 |
JDK-8136644 | 8u60 | Abhijit Saha | P2 | Closed | Fixed | b32 |
JDK-8136664 | 8u51 | Abhijit Saha | P2 | Closed | Fixed | b33 |
JDK-8147099 | emb-8u91 | Abhijit Saha | P2 | Resolved | Fixed | b01 |
JDK-8143667 | emb-8u71 | Abhijit Saha | P2 | Resolved | Fixed | b01 |
CodeRef codeRef = new CodeRef(loc, null, isCodebase, false);
second arg (jar version) is always null, instead of fetching the jar version (which may have been set by parameter "cache_version" that has previously been set in the AppContext.
code should be:
String version = (String) ToolkitStore.get().getAppContext().get(
Config.APPCONTEXT_KEY_PREFIX + loc));
CodeRef codeRef = new CodeRef(loc, version, isCodebase, false);
As a result of this problem, a customer is seeing problems using 8u45 with DRS containing cert based rules.
The same problem exists in 7uX, 8uX, and JDK9
- backported by
-
JDK-8136934 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Resolved
-
-
JDK-8140810 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Resolved
-
-
JDK-8141780 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Resolved
-
-
JDK-8143667 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Resolved
-
-
JDK-8147099 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Resolved
-
-
JDK-8147712 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Resolved
-
-
JDK-8134616 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Closed
-
-
JDK-8136644 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Closed
-
-
JDK-8136664 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Closed
-
-
JDK-8136947 Applet2Manager.getMainDeploymentRuleSet ignores jar version.
-
- Closed
-