[Bug 2968] IcedTea-Web crashes on Dell EqualLogic SAN

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Wed Nov 16 17:50:52 UTC 2016


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2968

--- Comment #6 from JiriVanek <jvanek at redhat.com> ---
hmm... I'm not able to find how to safely fix it in ITW.

Maybe dell canhelp?
The patch to Dell EquaLogic of:

    private void readWrappers(String string) throws InstantiationException,
IllegalAccessException, ClassNotFoundException, IOException {
-        ClassLoader classLoader =
Thread.currentThread().getContextClassLoader();
+        ClassLoader classLoader = this.getClass().getClassLoader();
        InputStream inputStream = classLoader.getResourceAsStream(string);
        try {


to WrapperActionHandler.java  should fix the issue.

However I do not claim ITW is not to blame.
>From various classlaoder accesses, getResourceAsStream :

Thread.currentThread().getContextClassLoader();
 - ITW: pass in javaws app, fails in applet
 - Oracle: pass in javaws app, pass in applet

SomeClass.class.getClassLoader();
 - ITW: pass for both
 - Oracle: pass in javaws app, pass in applet

ClassLoader.getSystemClassLoader();
 - for both Oracle and ITW fails in both

this.getClass().getClassLoader();
 - for both Oracle and ITW pass for both

-- 
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/20161116/38936e78/attachment.html>


More information about the distro-pkg-dev mailing list