Question

I've self-signed a java applet, so when a user views this applet in a browser, the browser will show a digital signature cannot be verified confirmation dialog. That's all ok, however the value of the "Name:" property (seen above the "Publisher:" property) of this confirmation dialog is set to something I don't remember setting when doing the signing.

So my question is, where is this value coming from, and how do I change it?

Was it helpful?

Solution

Ok, found it, it is the name of the applet in the HTML source

OTHER TIPS

If using the <object> tag, add a name parameter:

<param name="name" value="Name of Applet">

In addition to the above responses, use Application-Name property in the MANIFEST.MF inside your (signed) jar.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top