up vote 1 down vote favorite
1
share [g+] share [fb]

I am trying to use a Maven 2 repository via SSL secured with a self-signed certificate. I followed the instructions at HTTPS and Self-Signed Certificates in Java but I doesn't to work.

I think its because the certificate is a wild-card certificate. So I wonder if I should be doing something different to import the wild-card certificate?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 1 down vote accepted

The issue was not the use of a wild-card certificate after all. I had to import the CA certificate I used to sign the server certificate into the jssecacerts keystore rather than cacerts:

keytool -keystore %JAVA_HOME%\jre\lib\security\jssecacerts -import -file cacert.pem
link|improve this answer
feedback
  • try using -Djavax.net.debug=ssl as that page suggests and include the output
  • validate your assumption that the problem is the wildcard - try it against a non-wildcard self-signed certification
link|improve this answer
I'm having similar problems with Maven and self-signed certs, and running Maven with -Djavax.net.debug=ssl seems to have no effect. – matt b Jun 15 '09 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.