splungebob
splungebob

Reputation: 5415

In-house JNLP app won't run under Java 7

We have an in-house-only app that can be run from both Unix workstations and Windows PCs. Some background of our environment:

Problem: With the security updates to Java 7, some users on the PCs are having trouble launching the app, since it's self-signed.

Q1: Sifting through the mountain of documentation, it appears that self-signing will soon be a thing of the past, and that the app won't run at all. Is this an absolute? I can't find a definitive answer that applies to in-house JWS apps that aren't deployed outside of a local, restriced domain.

Q2: Making changes to our code so that it can run as a sandboxed app would not be trivial. Would doing so solve this, or will we still be stuck with the security issues?

Q3: Would distributing/installing/registering/whatever-ing our self-made certificate to the clients solve this?

Any help or suggestions <cough> Andrew Thompson I'm talking to you </cough> is appreciated.

EDIT: We do have the option of signing our jars with a trusted Root CA, but the signing would not be done by us (long story) and would make our deployment rise from a couple of hours to many days, which is why we're wondering if an alternate route is available for in-house apps.

Upvotes: 2

Views: 977

Answers (1)

mwhs
mwhs

Reputation: 5978

You need to import your self-created certificate in the keystore/certificate store used by the Java VM that is used to start your WebStart application.

Another option (my choice) would definitely be to spend the few coins and have your certificate signed by a well known Root CA. You can do that for intranet domains too I think.

Upvotes: 1

Related Questions