I have created Java signed applet
, it runs perfectly if I set my Java(JRE 8) security level high and add my site url in exception site list.
But if we do not add site url in exception site list, java security exception comes as explained here : add url in exception site list
I have created a signed applet using a third part certificate.
Here is my manifest file after creating signed applet:
Is there any option available to avoid these security blocking popups by adding some changes in manifest file while creating signed applet, or any script, java code to avoid these popups without adding site url in exception site list?
Or is it really mandatory from Java that we must need to add site url in exception site list to avoid such blocking error.
Basically is there any option available to add our url in exception site list through manifest file or any Java code ?
Is it mandatory if I want to sign my applet using signed certificate then it must be a code signing certificate? wildcard or ssl certificate will not work?
As I am getting self signed applet block issue though I have signed my applet with wildcard certificate.
Try to modify manifest, adding your server name into caller-allowable-codebase. Probably you don't need to add your site url into exception anymore
UPDATE:
This is an example of my manisfest file: