[Bug 322] New: Thread#GetContextClassLoader() throws in IcedTeaPlugin

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Tue Apr 21 19:40:16 PDT 2009


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

           Summary: Thread#GetContextClassLoader() throws in IcedTeaPlugin
           Product: IcedTea
           Version: unspecified
          Platform: All
               URL: http://people.apache.org/~tvolkert/bugreports/getContext
                    ClassLoader/test.html
        OS/Version: All
            Status: NEW
          Severity: critical
          Priority: P1
         Component: IcedTea
        AssignedTo: unassigned at icedtea.classpath.org
        ReportedBy: tvolkert at gmail.com


public class Test extends java.applet.Applet {
    private static final long serialVersionUID = 0;

    private java.awt.Label label = new java.awt.Label("Loading...");

    public void init() {
        setLayout(new java.awt.BorderLayout());
        add(label);
    }

    public void start() {
        try {
           
label.setText(Thread.currentThread().getContextClassLoader().toString());
        } catch (Throwable t) {
            t.printStackTrace();
            label.setText(t.toString());
        }
    }
}

Load this applet into an html page, and it will throw a SecurityException when
loaded via the IcedTeaPlugin (see attached URL) .  This exception is unique to
IcedTea and is unexpected.

The SecurityManager that's installed in the plugin should allow the
"getClassLoader" runtime permission.

I'm filing this as critical because there's no workaround, and it prevents all
my applets from even starting up in IcedTea.


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list