Hi!

I'm working on an applet that uses SVNKit. Because of SVNKit (subversion
system, written in java) my applet needs to be signed. My signing script
works fine until I want to use the svnkit.jar. I don't get any error
messages using the svnkit.jar file either, but the applet won't load. How do
import this library properly in my signing process? 

My bash-script that does the signing:
#!/bin.sh
javac -classpath .:SVNKitLibs/svnkit.jar SVNApplet.java
jar cvf SVNApplet.jar SVNApplet.class
rm stormstore
keytool -genkey -alias signFiles -keystore stormstore -keypass apasswd
-dname "cn=storm" -storepass apasswd
jarsigner -keystore stormstore -storepass apasswd -keypass apasswd
-signedjar SignedSVNApplet.jar SVNApplet.jar signFiles
keytool -export -keystore stormstore -storepass apasswd -alias signFiles
-file storm.cer
-- 
View this message in context: 
http://www.nabble.com/Signed-applets-and-commandline-import-problems-tf3081668.html#a8562051
Sent from the Java Linux General mailing list archive at Nabble.com.


----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to