-
Bug
-
Resolution: Fixed
-
P1
-
1.4.0
-
beta
-
generic, x86
-
generic, windows_nt
When an applet is signed with RSA, Java Plug-in will popup a security dialog using the modal JOptionPane:
JDialog dialog = pane.createDialog(null, title);
dialog.setResizeable(false);
dialog.setModal(true);
dialog.show(); <-- hang
dialog.toFront();
The bug can be demonstrated at http://javaweb.eng/~sridhare/tests/RSA/st13Veri.html.
Notice that the same plug-in using Kestrel/Firefly/Ladybird do not have this problem, so this problem is probably on the Swing side.
This bug occurs on all platforms - Windows/Solaris/Linux.
JDialog dialog = pane.createDialog(null, title);
dialog.setResizeable(false);
dialog.setModal(true);
dialog.show(); <-- hang
dialog.toFront();
The bug can be demonstrated at http://javaweb.eng/~sridhare/tests/RSA/st13Veri.html.
Notice that the same plug-in using Kestrel/Firefly/Ladybird do not have this problem, so this problem is probably on the Swing side.
This bug occurs on all platforms - Windows/Solaris/Linux.
- duplicates
-
JDK-4397904 RSA feature is broken for Merlin Java Plug-in Build44
- Closed