I developed a java applet called by Javascript functions for a web application. I would like to avoid having the application field set to UNKNOWN when the security warning message (a.k.a the one asking me to allow the following application from the current website) pops up.
So far I tried to add a name field and an alt field when declaring my applet attributes in my HTML. I also tried to add an Application-Name in the MANIFEST of the java applet but I keep having a warning message with application:UNKNOWN
How can I set correctly this field?
Thanks.