Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the "name" value of a signed Java applet

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?

like image 515
Zurb Avatar asked Aug 21 '09 11:08

Zurb


2 Answers

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

like image 164
Zurb Avatar answered Oct 23 '22 10:10

Zurb


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

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

like image 2
Rich Apodaca Avatar answered Oct 23 '22 09:10

Rich Apodaca