Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
The steps Chris would take, after creating the
HighScore
andHighScorePermission
classes, are:
javac HighScore*.java -d .
jar cvf hs.jar com/scoredev/scores/HighScore*.class
keytool -genkey -keystore chris.keystore -alias signJars
Specify whatever you want for the passwords and distinguished name information.
jarsigner -keystore chris.keystore hs.jar signJars
keytool -export -keystore chris.keystore -alias signJars -file Chris.cer
That is, supply them
- the signed JAR File
hs.jar
,
- the public key certificate file
Chris.cer
, and
- information as to the permissions the
HighScore
andHighScorePermission
classes must be granted in a policy file in order to work. For this, Chris could supply the exact grant entry needed.
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.