Sign java applet without security popup

I have a question about signing java applets. I have a self-signed applet. When I open the web page, I have a security warning dialog box and I have to confirm the permissions. Is it possible (for example, through an SSL certificate or I do not know any code certificate) that this dialog will not appear?

+4
source share
2 answers

Is it possible ... that this dialogue does not appear?

Only in case of a security error in the JRE.

If the code is digitally signed using a verified certificate, the security warning will be softer, signed in the dialog box and Always Trust can be checked by default.

+2
source

Obtain a certificate from a trusted authority, such as Thawte or Verisign . In this way, you will ensure that your users are a trusted party (so that they can more willingly click the Always trust content from this publisher check box).

You, as an application developer, cannot completely disable this dialog, but your users can. See the Avoiding security chapter of this document for how to do this.

+7
source

Source: https://habr.com/ru/post/1416122/


All Articles