• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Verified signed, but jnlp says unsigned.

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello.
It's astonishing to me how hard it is to find reliable tutorials for jarsigning- nothing seems to take it from start to finish to sign a jar. I finally found this one:
http://www.narendranaidu.com/2007/11/3-easy-steps-to-self-sign-applet-jar.html

which just says to use the three simple lines


1. keytool -genkey -keystore myKeyStore -alias me

2. keytool -selfcert -keystore myKeyStore -alias me

3. jarsigner -keystore myKeyStore jarfile.jar me

These I did, then I ran jarsigner -verify on the jar, and it says it's signed. However, when I try to run a jnlp with it, I get "Found unsigned resource in: http://localhost/IsoLauncher.jar"
(IsoLauncher is the jar I signed/verified).

It burns me up how much harder this is than it seems like it should be.

Thanks,
Nick
 
Greenhorn
Posts: 25
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Emm...

Have you checked the Manifest file in fact? I mean is it contains classes signature?
You just open your jar file and check.

If manifest file does not contain project signed classes info that means your app is really not signed

 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic