Details
-
Bug
-
Resolution: Fixed
-
P4
-
8u20, 9
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8082179 | emb-9 | Andy Herrick | P4 | Resolved | Fixed | b65 |
JDK-8086367 | 8u65 | Andy Herrick | P4 | Resolved | Fixed | b01 |
JDK-8077541 | 8u60 | Andy Herrick | P4 | Resolved | Fixed | b15 |
JDK-8137446 | emb-8u65 | Unassigned | P4 | Resolved | Fixed | b01 |
JDK-8079911 | emb-8u60 | Andy Herrick | P4 | Resolved | Fixed | team |
Description
with the JNLP Specification Maintenance Release 8.20, we should allow to run applications that specify the specification version 8.20 in the jnlp file, but code was not change, so the following jnlp file:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="8.0+" codebase="http://oklahoma.us.oracle.com/www/tests/sandbox" >
<resources>
<jar href="hello.jar" />
<j2se version="1.6+" />
</resources>
<application-desc main-class="hello"/>
</jnlp>
will fail with a LaunchErrorDialog who's detail days that version 8.0+ is not supported.
furthermore, the error dialog says only versions 6.0, 1.5, and 1.0 are supported.
(however code in LaunchDesc.isValidSpecificationVersion() allows versions 7.0, 6.0.18. 6.0.10, 6.0, 1.5, and 1.0)
so the error dialog has not been updated in the past, and the above method should be updated to allow 8.20.
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="8.0+" codebase="http://oklahoma.us.oracle.com/www/tests/sandbox" >
<resources>
<jar href="hello.jar" />
<j2se version="1.6+" />
</resources>
<application-desc main-class="hello"/>
</jnlp>
will fail with a LaunchErrorDialog who's detail days that version 8.0+ is not supported.
furthermore, the error dialog says only versions 6.0, 1.5, and 1.0 are supported.
(however code in LaunchDesc.isValidSpecificationVersion() allows versions 7.0, 6.0.18. 6.0.10, 6.0, 1.5, and 1.0)
so the error dialog has not been updated in the past, and the above method should be updated to allow 8.20.
Attachments
Issue Links
- backported by
-
JDK-8077541 jnlp spec version 8.20 is not supported
- Resolved
-
JDK-8079911 jnlp spec version 8.20 is not supported
- Resolved
-
JDK-8082179 jnlp spec version 8.20 is not supported
- Resolved
-
JDK-8086367 jnlp spec version 8.20 is not supported
- Resolved
-
JDK-8137446 jnlp spec version 8.20 is not supported
- Resolved