0

I'm trying to get the Security Manager to work in JBoss 5.1.0 GA, which seems to be lacking the JbossPublicKey.RSA.

Hence I could not import the public key, I couldn't create a keystore to use it with the Security Manager. This gives me a lot of no signer certificates errors.

Is there any way to work around this?

Dennis Winter
  • 448
  • 2
  • 7
  • 16

1 Answers1

0

As far as I know JbossPublicKey.RSA is basically the cacerts file that the used JRE point to. By default this file is <JRE root>/lib/security/cacerts. I guess you get the no signer certificate because you lack the proper certificate in this file.

You can call the file whatever you like, and place it wherever you want as long as you tell the JRE where to find it. IIRC it's called TrustStore in the JRE configuration.

Qben
  • 248
  • 4
  • 9