Signed applets and commandline import problems
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

