-
Bug
-
Resolution: Fixed
-
P2
-
1.4.2, 6
-
b70
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2143670 | 5.0u14 | Vikram Aroskar | P2 | Resolved | Fixed | b01 |
JDK-2143699 | 1.4-pool | Vikram Aroskar | P2 | Closed | Won't Fix |
Jnlp Specfication allows you to nest different resources depending on which jre is used as follows:
<resources>
<j2se version="1.4">
<resources>
<jar href="draw.jar" main="true" download="eager"/>
</resources>
</j2se>
<j2se version="1.5">
<resources>
<jar href="draw15.jar" main="true" download="eager"/>
</resources>
</j2se>
<j2se version="1.6">
<resources>
<jar href="draw16.jar" main="true" download="eager"/>
</resources>
</j2se>
</resources>
however in both 1.5.0 and 6.0 the main jar cannot be found if it is in such a nested resource. (using javaws 1.4.2 with such a jnlp file causes a core dump on solaris) Resources other than the main jar (such as properties and non-main jars) seem to work.
<resources>
<j2se version="1.4">
<resources>
<jar href="draw.jar" main="true" download="eager"/>
</resources>
</j2se>
<j2se version="1.5">
<resources>
<jar href="draw15.jar" main="true" download="eager"/>
</resources>
</j2se>
<j2se version="1.6">
<resources>
<jar href="draw16.jar" main="true" download="eager"/>
</resources>
</j2se>
</resources>
however in both 1.5.0 and 6.0 the main jar cannot be found if it is in such a nested resource. (using javaws 1.4.2 with such a jnlp file causes a core dump on solaris) Resources other than the main jar (such as properties and non-main jars) seem to work.
- backported by
-
JDK-2143670 Jar resources nested in JRE resources block are broken.
-
- Resolved
-
-
JDK-2143699 Jar resources nested in JRE resources block are broken.
-
- Closed
-
- duplicates
-
JDK-6490567 nested resources element inside j2se element does not work correctly in Java Web Start 5.0 and 1.4.2
-
- Closed
-