I have JAR which is properly signed with a valid certificate from a trusted company. Im running an applet using HTML applet tag. My Manifest file includes following permissions:
Application-Name ="XYZ"
Permissions="all-permissions"
Codebase="*"
Trusted-Library="true"
I get the following warning message when running applet in browser:
I do not want this message to appear when my users open my applet. Can you advise me why this warning message is appearing and how to avoid it from appearing for my users?
Thanks!