[Bug 3351] Java applet with "." codebase launched via jnlp web-start cannot load. Fails because NON-MAIN classes do not load
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Fri Apr 7 13:56:56 UTC 2017
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3351
--- Comment #3 from JiriVanek <jvanek at redhat.com> ---
(In reply to stefan from comment #2)
> Hi, I'll break you the good news first, we have the code working!!
> Still some warnings in the terminal window but it runs at least.
> See below
good!
>
> (In reply to JiriVanek from comment #1)
> > Hi!
...
>
> I am just thinking here: If it was Java's JarURLConnection problem, wouldn't
> that mean that the applet would fail in other implementations as well
> ?(which it does not).
Other implementations means proprietary Oracle javaws. HAve you tried on IBM
javaws? They may even be returning different stream then JarURLConnection. This
is not safe retyping...
Last time I was looking into oracle plugin (and so a bit also to javaws) there
was a lot of copypasted code from Openjdk. With small tweeks. MAybe Tehre was
also JarURLConnection overwritten.
That something ITW can not afford.
>
> In any case the code with the localJarFile.close(); commented away is in the
> usual place and you can see it running now :)
>
> Still some warning messages come up in the console but they are not "fatal"
> anyway.
thank you for uplading the app again. As for wornings, I think you can ignore
happily all http and bundle related.
however the java.lang.ClassCastException: java.awt.Frame cannot be cast to
javax.swing.JFrame is worty of thinking about. This is not first app having
this problem:
topFrame =
((javax.swing.JFrame)javax.swing.SwingUtilities.getWindowAncestor(this));
If you can, try to cast it to something more deepr in inheritance. awt.Frame
should be fine.
>
>
> >
> > In all cases the fix will not be easy.
>
>
> Should I leave the code with that line commented away? Is it OK if I do
> *not* close that connection? I closed the connection after using it because
> I thought it was good practice. And because Java does not complain, except
> on the IcedTea case, the code has been running like that for years now.
> Would it create any problems leaving the connection open? Or it closes when
> the applet exits?
Dont forget we are no longer speaking about applet. But about javaws
application. So having this opened will not harm to much (unlike applet, after
closgin javaws, its done).
Anyway - I would recommend you to get rid of those calls at all.
If you simply call Class.forName on any class from jcalendar, you will
immediately know if it is correctly downloaded and usable. No need to bother
with urlstreams.
Also when you have already have localURL = new java.net.URL("jar", "", cbase +
"jcalendar.jar!/"); you can simply ocnvert it to File and you will have its
size.
Still - note - this may be serious issue in itw. Please fix your application so
it works on all desired platforms, but dont close this issue. I will creeate
autoamted reproducer (so you can remove the app you exposed for me) and debug
internals of itw...
happy your app runs fine now. Please get rid of that jarurl connection :)
>
> Thanks!
np!
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20170407/1e022370/attachment.html>
More information about the distro-pkg-dev
mailing list