Milhous
Milhous

Reputation: 14653

Java webstart Security

What is the option in Java Webstart command line to skip the security check? This is for testing purposes only.

javaws myfile.jar

Upvotes: 1

Views: 491

Answers (2)

Tom Hawtin - tackline
Tom Hawtin - tackline

Reputation: 147164

I believe there are two undocumented command line options in the Sun JDK: -secure (ironically) and -installer.

Be careful!

Strange way to test.

Upvotes: 1

sal
sal

Reputation: 23633

If the user answers "Always", the certificate will be stored in the certificate store pointed to by the deployment.user.security.trusted.certs property.

Is this what you're looking for? You can set to "Always" and store and use a self-signed key for testing.

Upvotes: 0

Related Questions