vote up 0 vote down star

I'm trying to use Hudson (which uses SVNKit) to access a Subversion repository that requires a client certificate to access it. I can access the same repository using the same client certificate via Eclipse (also using SVNKit).

When Hudson tries to check out the repository, it fails with:

org.tmatesoft.svn.core.SVNException: svn: Received fatal alert: handshake_failure

Hudson is running under Tomcat, so I turned on ssl debugging in the Tomcat log (-Djavax.net.debug=ssl).

At the end of the handshake I see:

*** ServerHelloDone
Executor #0 for master : executing eMASS integration #3, SEND SSLv3 ALERT:  warning, description = no_certificate

I'm not sure if that is the crux of the problem or not.

That follows a list of Cert Authorities. I made sure the server's cert root issuer is imported in my cacerts, as well as the intermediate issuer. I still get the same problem.

Any ideas for what to look at?

The log is on pastebin.

flag

2 Answers

vote up 0 vote down

Alexey had the right idea.

Log:

SEND SSLv3 ALERT:  warning, description = no_certificate

This was discussed in the Java Programming forum.

Maybe your eclipse and Hudson start with different JREs (client JRE vs. JDK JRE?). Every JRE has its own keystore. This can get quit confusing to configure.

link|flag
They are on different systems, so they are definitely different keystores. On Eclipse, where I can connect, I have added no certs to the cacert. On the Hudson box I have added the server cert issuing authorities to the cacert file. – CoverosGene Nov 6 at 15:30
Are these different JDK versions? The root certificates change from time to time. – Thomas Jung Nov 6 at 15:49
Both are JDK 1.6.0_17 – CoverosGene Nov 6 at 16:29
vote up 0 vote down

I don`t know exactly, but may be it helps. May be you need to add cerificate to jvm using keystore

link|flag

Your Answer

Get an OpenID
or

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