-
Bug
-
Resolution: Fixed
-
P3
-
7
-
b02
-
x86
-
windows
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8005136 | 8 | Nam Nguyen | P3 | Closed | Fixed | b69 |
for JNLP file without codebase and href; and if the main jar is located in a sub directory, we will generate incorrect codebase.
e.g <jar href="jarsubdir/main.jar"/>
this is because for JNLP file without codebase and href, we need to get href to jnlp using the main jar. (canonical home: http://host.com/jarsubdir/main.jarjnlp)
current code simply deduce codebase from canonical home, so the codebase becomes:
http://host.com/jarsubdir
and then later we will try to fetch jar from: http://host.com/jarsubdir/jarsubdir/main.jar
which is not correct.
e.g <jar href="jarsubdir/main.jar"/>
this is because for JNLP file without codebase and href, we need to get href to jnlp using the main jar. (canonical home: http://host.com/jarsubdir/main.jarjnlp)
current code simply deduce codebase from canonical home, so the codebase becomes:
http://host.com/jarsubdir
and then later we will try to fetch jar from: http://host.com/jarsubdir/jarsubdir/main.jar
which is not correct.
- backported by
-
JDK-8005136 codebase generation bug for JNLP file without both codebase and href.
-
- Closed
-