Look and feel changes when a signed applet is accessed through javascript
Hi All,
I have a signed applet with self signed certificate and is woking fine for saving files on client's machine.
I have a functionality where a JSP page invokes a public method of applet.
This adds a JRadioButtonMenuItem to an existing popup menu in applet.
The problem lies with LookAndFeel of this newly added JRadioButtonMenuItem,
as this item appears in Metal LookAndFeel(java default).
Whereas all the other items(created by applet) appears in Windows LookAndFeel.
This has been a serious issue to the application,
as the client cannot accept such a mixed LookAndFeel in a popup menu.
Being aware of calling method from an unsafe source(jsp)
i am already calling the method as a previlege action using AccessController.doPrivileged().
But it doesn't help.
Can anybody suggest, where i am wrong.
Many thanks in advance.

