I have a web page that is split into 2 frames with a java.awt.List in the left frame and other selected applets in the right frame. The List works as a selection for which applet gets loaded into the right frame. Sounds pretty simple right?
Well my issue is that when I click on the List a lot without allowing the applets in the right frame to completely load all the way, I get errors in Internet Explorer that causes a crash (That friendly little box that says: something has occured to cause Internet Explorer to fail, do you wish to send a report to Microsoft?).
Here's some of the errors in the Java Console...
java.lang.NullPointerException
at com/ms/ui/UIPanel.setRedrawing
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateComponent.setValid
at com/ms/ui/UIRoot.Ï
at com/ms/ui/UIRoot.º
at com/ms/ui/UIRoot.paintAll
at com/ms/ui/AwtUIHost.update
at com/ms/awt/WUIPeer.update (WUIPeer.java)
at com/ms/awt/WComponentPeer.doUpdate (WComponentPeer.java)
at com/ms/awt/WComponentPeer.paintNode (WComponentPeer.java)
at com/ms/ui/windowmanager/PaintRequest.run (PaintRequest.java)
at com/ms/ui/windowmanager/RunnableMessage.run (RunnableMessage.java)
at com/ms/awt/WSystemQueue.getMessage (WSystemQueue.java)
at com/ms/awt/WEventQueue.getNextEvent (WEventQueue.java)
at java/awt/EventDispatchThread.run (EventDispatchThread.java)
I did some research on the net and found that these are AFC objects which I am not even using (I'm using AWT). What could be going on and is there any way of debugging stuff like this.
Well my issue is that when I click on the List a lot without allowing the applets in the right frame to completely load all the way, I get errors in Internet Explorer that causes a crash (That friendly little box that says: something has occured to cause Internet Explorer to fail, do you wish to send a report to Microsoft?).
Here's some of the errors in the Java Console...
java.lang.NullPointerException
at com/ms/ui/UIPanel.setRedrawing
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateContainer.setValid
at com/ms/ui/UIStateComponent.setValid
at com/ms/ui/UIRoot.Ï
at com/ms/ui/UIRoot.º
at com/ms/ui/UIRoot.paintAll
at com/ms/ui/AwtUIHost.update
at com/ms/awt/WUIPeer.update (WUIPeer.java)
at com/ms/awt/WComponentPeer.doUpdate (WComponentPeer.java)
at com/ms/awt/WComponentPeer.paintNode (WComponentPeer.java)
at com/ms/ui/windowmanager/PaintRequest.run (PaintRequest.java)
at com/ms/ui/windowmanager/RunnableMessage.run (RunnableMessage.java)
at com/ms/awt/WSystemQueue.getMessage (WSystemQueue.java)
at com/ms/awt/WEventQueue.getNextEvent (WEventQueue.java)
at java/awt/EventDispatchThread.run (EventDispatchThread.java)
I did some research on the net and found that these are AFC objects which I am not even using (I'm using AWT). What could be going on and is there any way of debugging stuff like this.