Need help to sign an applet

I have followed the guide at (http://forum.java.sun.com/thread.jsp?forum=63&thread=174214) to sign my applet, but in step 8 I get:

C:\test>c:\j2sdk1.4.1_02\bin\jarsigner -verify -verbose -certs sCount.jar

71 Thu Mar 04 08:53:12 CET 2004 META-INF/MANIFEST.MF

124 Thu Mar 04 09:06:40 CET 2004 META-INF/SIGNFILE.SF

1024 Thu Mar 04 09:06:40 CET 2004 META-INF/SIGNFILE.DSA

0 Thu Mar 04 08:53:12 CET 2004 META-INF/

s = signature was verified

m = entry is listed in manifest

k = at least one certificate was found in keystore

i = at least one certificate was found in identity scope

jar is unsigned. (signatures missing or not parsable)

Is there anyone that can help?

[760 byte] By [pnrDK] at [2007-9-30 3:02:35]
# 1
I ran into this same problem b4 when I was working on an applet project.The problem was caused by trying to sign the applet while the applet was open and running in the browser.If this is your situation, make sure that the applet is not running while you are trying to sign it.
ydavis at 2007-6-29 11:09:16 > top of Java-index,Security,Signed Applets...
# 2

1.) Once you have the pvk and the spc files you can sign cab files using a command like:

signcode -spc mycert.spc -v mykey.pvk -t http://timestamp.verisign.com/scripts/timstamp.dll xxx.cab

Note:at some point it will ask for the pvk password.

To create a cab file use the command:

cabarc.exe" -r -p N xxxx.cab <classes files>

2.) In order to sign the .jar file you need to import the certificate into Netscape Navigator (I use Netscape Navigator 4.x).

To import the certificate into Netscape you must follow these steps:

a.) obtain a pfx file by

i.) Importing the certificate into Internet Explorer first using the pvkimprt tool in this way:

pvkimprt mycert.spc mykey.pvk

and exporting the certificate as pfx buy going to Internet Explorer -> Tools -> Content -> Certificates -> Export

OR

ii.) generating the pfx file using the pvkimprt tool this way

pvkimprt -PFX mycert.spc mykey.pvk

b.) now you can go to Netscape Navigator -> Communicator -> Tools -> Security Info -> Certificates -> Yours -> Import a Certificate -> Browse for the pfx file -> Enter Password

3.) Now you can also sign the jar file using a command like:

signtool -d C:\Progra~1\Netscape\Users\x -k fee325ws-1f1d-4cb0-a447-eesdf923srq1 -Z jta20.jar <classes files>

This is Netscape frfee325ws-1f1d-4cb0-a447-eesdf923srq1. Use you certificate.

Notes:

- at some point it will ask for a password which is not the pvk password but the password that protects the netscape's certificates

database which it should have asked of you when importing your first certificate

- Netscape stores the certificate in a database that in my case is situated on this path: C:\Progra~1\Netscape\Users\x where "x"

is my Netscape account so you should change this command according to you personal settings.

- I am using Netscape Navigator 4.x

black_nm at 2007-6-29 11:09:16 > top of Java-index,Security,Signed Applets...