1

An application run as java applet suddenly stopps working with default java security settings.

The reason is that this applet uses a self-signed certificate.

Is it possible to get it starting again without lowering the security level configured within the Java control panel? Is there any workaround?

Florian
  • 388
  • 2
  • 3
  • 13

2 Answers2

4

I strongly suggest using a certificate signed by a good Certificate Authority (CA). If you can modify the client machine, it is possible to add your own CA, but the practice is frowned upon for being somewhat dodgy.

Tom Hawtin - tackline
  • 145,806
  • 30
  • 211
  • 305
  • Java uses its own list of CAs also. [How to import .cer file in to .truststore](http://stackoverflow.com/questions/373295/digital-certificate-how-to-import-cer-file-in-to-truststore-file-using). Search for "code-signing certificate". – Marcus Adams Jan 15 '14 at 15:52
1

You may try the exception list feature as descibed here or here.

Lonzak
  • 9,334
  • 5
  • 57
  • 88