Java Solaris Communities Sun Store Join SDN My Profile Why Join?
 
Bug Database
Bug Detail
Quick Lists
Top 25 Bugs
Top 25 RFE's
Recently Closed Bugs
Printable Page Printable Page


Bug Database
Bug ID: 4711515
Votes 3
Synopsis Wrong AppContext used in RMI threads
Category javawebstart:other
Reported Against 1.4 , 1.4.1
Release Fixed 1.0.1_05
State 10-Fix Delivered, bug
Priority: 2-High
Related Bugs 4429811 , 4476452
Submit Date 08-JUL-2002
Description
JavaWebStart application running with the 1.4.0 JRE is creating 2 AWT event queues and events are being dispatched in both queues.  This eventually leads to a deadlock in the GUI.

The second event dispatch thread queue seems to become active (ie. an event is actually dispatched to that thread) when using RMI. To be more specific, the "2nd" event queue gets used when a SwingUtilities.invokeLater() call is invoked from a thread that has performed an RMI operation.

This only occurs when launching the GUI via Web Start.

The problem was not seen with 1.3.1.  1.4.0 JRE is being used with JavaWebStart 1.0.1_02.  The problem has been reproduced on WinNT 4.0 and Solaris 8.

This problem looks very similar to bug 4476452, which was fixed in JAWS 1.0.1_02 for the 1.3.1 JRE.  Also looks related to 4429811.

What the test application does: 

The client contains a JFrame, a JTextArea and 2 buttons: Local Update and Remote Update.  By clicking on "Local Update" button, in the actionPerformed code, it does the following ( ta is the JTextArea): 

                         public void actionPerformed( ActionEvent e ) 
                         { 
                             Runnable localUpdate = new Runnable()            
                             {                
                                 public void run()                
                                 {       
                                     Runnable swingLocalUpdate = new Runnable()            
                                     { 
                                         public void run() 
                                         { 
                                             ta.append( "Local update_________________\n"); 
                                             ta.append( "appContext: " + AppContext.getAppContext().toString() + "\n"); 
                                             ta.append( "Toolkit: " + Toolkit.getDefaultToolkit().toString() + "\n"); 
                                             ta.append( "SystemEventQueue:" + Toolkit.getDefaultToolkit().getSystemEventQueue().toString() + "\n");

                                             ta.append( "Current thread: " + Thread.currentThread().toString() + "\n"); 
                                         } 
                                     };                           
                                     SwingUtilities.invokeLater( swingLocalUpdate ); 
                                 } 
                             }; 
                             
                             Thread t = new Thread( localUpdate ); 
                             t.start();                    
                         } 

By clicking on the "Remote Update" button, in the actionPerformed code, it first starts a new thread and in the thread it invokes a Remote Method HelloI.hello(): 

                              public void actionPerformed( ActionEvent e ) 
                              { 
                                  Runnable remoteUpdate = new Runnable()            
                                  {                
                                      public void run()                
                                      {   
                                          try 
                                          { 
                                              myServer.hello(); 
                                          } 
                                          catch( Exception e ) 
                                          { 
                                              e.printStackTrace(); 
                                          } 
                                      } 
                                  }; 
                                  
                                  Thread t = new Thread( remoteUpdate ); 
                                  t.start();                    
On the server side, by invoking HelloI.hello() it calls back the client ObserverI.update() through RMI where client observer.update() prints out following info in the JTextArea:

                  public void update() 
                  { 
                      Runnable swingRemoteUpdate = new Runnable()            
                      { 
                          public void run() 
                          { 
                              ta.append( "Remote update_________________\n"); 
                              ta.append( "appContext: " + AppContext.getAppContext().toString() + "\n"); 
                              ta.append( "Toolkit: " + Toolkit.getDefaultToolkit().toString() + "\n"); 
                              ta.append( "SystemEventQueue:" + Toolkit.getDefaultToolkit().getSystemEventQueue().toString() + "\n"); 
                              ta.append( "Current thread: " + Thread.currentThread().toString() + "\n"); 
                          } 
                       };                           
                       SwingUtilities.invokeLater( swingRemoteUpdate ); 
                  } 

Test Result: 

When clicking on "Local Update", following information is printed in the JTextArea 

     Local update_________________ 
     appContext: sun.awt.AppContext[threadGroup=javawsApplicationThreadGroup] 
     Toolkit:  xxxxx@xxxxx  
     SystemEventQueue: xxxxx@xxxxx  
     Current thread: Thread[AWT-EventQueue-1,6,javawsApplicationThreadGroup] 

When clicking on "Remote Update", following inforamation is printed in the JTextArea 

     Remote update_________________ 
     appContext: sun.awt.AppContext[threadGroup=system] 
     Toolkit:  xxxxx@xxxxx  
     SystemEventQueue: xxxxx@xxxxx  
     Current thread: Thread[AWT-EventQueue-0,6,main] 

Two different AppContext, EventQueue and Event Dispatch thread is returned in the same client process. 
Work Around
----------- work around for rmi/appcontext problems ---------------
    For any code in rmi observers that currently does gui operations by calling
    SwingUtilities.invokeLater(Runnable), replace SwingUtilities.invokeLater()
    with myInvokeLater().
    Implement myInvokeLater as follows:

        private final static ThreadGroup _applicationThreadGroup =
            Thread.currentThread().getThreadGroup();

        public void myInvokeLater(final Runnable code) {
            (new Thread(_applicationThreadGroup, new Runnable() {
                    public void run() { SwingUtilities.invokeLater(code); }
                } )
            ).start();
        }
        
    In this way the actual call to SwingUtilities.invokeLater is executed on
    a thread that is in the ThreadGroup used to load and initialize the class,
    as opposed to the "main" threadgroup (or one of it's decentants) used by
    rmi to listen for rmi calls.

 xxxxx@xxxxx  2002-07-10
-------------------------------------------------------------------
Evaluation
see comments from RMI team
 xxxxx@xxxxx  2002-07-16

The suggested fix assumes the JavaWebStartSecurity SecurityManager is left in
place.
Many RMI applications start with :
System.setSecurityManager(new RMISecurityManager());
since there must be some non-null security manager installed for some rmi functionality.  We could put this fix in as suggested, and suggest people not
setSecurityManager if it is allready non-null, but we would rather a complete
fix, so are re-committing to mantis.

 xxxxx@xxxxx  2002-07-19

Fixed this by running the main application code on the main AppContext, and the
security dialogs on the secondary context for mantis and beyond.
 xxxxx@xxxxx  2002-08-16
Comments
  
  Include a link with my name & email   


PLEASE NOTE: JDK6 is formerly known as Project Mustang