Warning Symbol Unsigned Java Applet

In a recent java update (6.10) http://java.sun.com/javase/6/webnotes/6u10.html link text where unsigned applets were changed. A warning is now displayed. Is it possible to disable this without signing the applet?

+1


source to share


3 answers


What is the point of such a warning if you can turn it off programmatically?



+1


source


There is no way to turn it off.



This update is for garbage. It breaks the standard Window functionality and causes headaches for all people supporting any applet. The stench of some coders tries to add new tricks unnecessarily.

+1


source


There is a way to turn it off. Follow these steps:

  • Open C: \ Program Files \ Java \ jre6 \ bin and run policytool.exe.
  • In the Policy Tool window, click File โ†’ Open and select the java.policy file from C: \ Program Files \ Java \ jre6 \ lib \ security.
  • Click on "CodeBase ALL" and on the "Edit Policy Entry" button after that.
  • In the Policy Entry window, click Add Permission.
  • In the Permissions window, select AWTPermission from the Permission: combo box and showWindowWithoutWarningBanner from the Target Name: box. Then click "OK".
  • In the Policy Entry window, click Finish.
  • In the Policy Tool window, click File โ†’ Save.
  • Restart your browser.
  • Enjoy applets without warning :).
+1


source







All Articles