Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automate the webstart process

The requirement is to automate the java webstart process. After clicking the JNLP file, its loading and displaying the below image enter image description here

There is no option for trust always here. I am aware of in Java 7 Update 51, java tighten the security. So I have signed jars with public code signing certificate provided by symantec, so there is no need of adding this site in java control pannel exception list or reduce the security level (both are not allowed in the customer environment). Is there any possibility to make this security question to disappear and run the jars automatically?

SOLUTION

Added the below two attributes in MANIFEST.MF, and it worked.

Codebase: *
Application-Library-Allowable-Codebase: *
like image 655
Nageswaran Avatar asked Mar 19 '14 16:03

Nageswaran


1 Answers

Added the below two attributes in MANIFEST.MF file and it worked.

Codebase: *
Application-Library-Allowable-Codebase: *
like image 108
Nageswaran Avatar answered Oct 19 '22 22:10

Nageswaran