Tagged Questions
8
votes
3answers
2k views
Why does Java Web Start say a signed jar file is unsigned?
Java Web Start (JWS) says that it can't launch my application because the jar file is unsigned:
Error: Unsigned application requesting unrestricted access to system
Unsigned resource: ...
3
votes
1answer
546 views
Security considerations when hosting signed jars
What are the security implications for hosting signed jars on the internet?
As I understand jar signing, once a user choose to auto-accept a certificate, it doesn't matter if the signed jar came from ...
2
votes
1answer
358 views
Where can I find the keystore file?
I created a keystore using keytool, but the thing is, we're using a JDK remotely ( and I don't have write priviledges on the server ).
I noticed that ant has a keystore attribute, and I would like to ...
2
votes
1answer
133 views
Adding signature to jar file prevents it from being loaded
I am having the problem that adding a second signature to a .jar file causes trouble in combination with code that only has one of them.
Background: We have an application that is signed with an ...
1
vote
1answer
292 views
How to sign a jar to never expire?
I used jarsigner to sign my jar file. But I got a warning:
Warning:
This jar contains entries whose signer certificate will expire within six months.
How can I make it never expire or expire in a ...
1
vote
2answers
433 views
Why won't signed java applet connect to external server?
I have a java applet which is trying to create a VNC connection to another host (note the host running the applet and the VNC host are NOT the same). More info on the code i'm working with can be ...
1
vote
1answer
456 views
Verify integrity of JAR files necessary?
I have a zip file containing a number of jar files that is being downloaded from an HTTPS site.
The jars form a command line driven, server side application. I have a Java written application ...
0
votes
1answer
21 views
.keystore deleted by accident
I'm trying to sign a JAR file. I generated a new store using the
"keytool -genkey -alias myStore -keystore mainstore"
And the store got generated with the actual name "mainstore" under my Windows ...
0
votes
0answers
55 views
error opening library file compressed with pack200 compression
Hi im a bit newbie to java and im developing a swing app in java. After a long research in google i found about pack200 compression and made a compressed jar with it for which is the library for my ...
0
votes
0answers
38 views
Unable to locate com.simontuffs.onejar.Boot in web start
I am new to java web start.
I am trying to lunch one-jar using web start.but i am getting this error:
java.lang.IllegalArgumentException: Unable to locate
com.simontuffs.onejar.Boot in the ...
0
votes
1answer
82 views
How can I convert a signed jar file to an .exe file and keep it signed?
I have created a JAR file and I've signed it using keytool & jarsigner and then I generated a .exe file, but the .exe does not keep the information of the certificate
How can I convert this .jar ...
0
votes
1answer
1k views
jar could not find main class, despite manifest
I am attempting to put my Java applet into a .Jar so I can sign it, as currently it works locally but throws access denied exceptions when I attempt to run it remotely (it reads other files in the ...
0
votes
2answers
391 views
How to test the code signing of a JAR file on a client machine?
We have signed a JAR file using a certificate generated by MS Active Directory Certificate Services. However, when accessing it via Java Web Start we are getting the prompt that the digital signature ...
0
votes
1answer
949 views
Un signing a signed jar
I am using bouncy castle provider for AES encryption. I need to create a fat jar from bc and my jar but as soon as i do it i get Algorithm not found exception. Is it possible to get rid of the sign ...