SSL Woes. Can't get past handshake_failure message

View: New views
2 Messages — Rating Filter:   Alert me  

SSL Woes. Can't get past handshake_failure message

by cj91 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi guys. I'm trying to connect via SSL to another webservice. I'm not having much luck. We tried entering the root certificates from versign and the server certificate but still getting this exception message:

Caused by: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure
	at com.ibm.jsse2.n.a(n.java:3)
	at com.ibm.jsse2.n.a(n.java:23)
	at com.ibm.jsse2.jc.b(jc.java:464)
	at com.ibm.jsse2.jc.a(jc.java:429)
	at com.ibm.jsse2.jc.g(jc.java:257)
	at com.ibm.jsse2.jc.a(jc.java:361)
	at com.ibm.jsse2.jc.startHandshake(jc.java:304)
Here is my spring config:

        
        
            
                
            
            
                .*_EXPORT_.*
                .*_EXPORT1024_.*
                .*_WITH_DES_.*
                .*_WITH_NULL_.*
                .*_DH_anon_.*
            
        
    
]]

RE: SSL Woes. Can't get past handshake_failure message

by Nate Woody-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

FWIW, the only way I've successfully debugged SSL problems is by turning
on SSL debugging (something like:
System.setProperty("javax.net.debug","ssl")).  Hopefully, you can at
least verify where/why the handshake is failing, what truststore is
being used, etc. You will definitely see if the server certificate is
the problem.

Nate


-----Original Message-----
From: cj91 [mailto:Jonathan.Fisher@...]
Sent: Tuesday, November 03, 2009 4:35 PM
To: users@...
Subject: SSL Woes. Can't get past handshake_failure message


Hi guys. I'm trying to connect via SSL to another webservice. I'm not
having
much luck. We tried entering the root certificates from versign and the
server certificate but still getting this exception message:

Caused by: javax.net.ssl.SSLHandshakeException: Received fatal alert:
handshake_failure
        at com.ibm.jsse2.n.a(n.java:3)
        at com.ibm.jsse2.n.a(n.java:23)
        at com.ibm.jsse2.jc.b(jc.java:464)
        at com.ibm.jsse2.jc.a(jc.java:429)
        at com.ibm.jsse2.jc.g(jc.java:257)
        at com.ibm.jsse2.jc.a(jc.java:361)
        at com.ibm.jsse2.jc.startHandshake(jc.java:304)


Here is my spring config:


       
       
           
               
           
           
                .*_EXPORT_.*
                .*_EXPORT1024_.*
                .*_WITH_DES_.*
                .*_WITH_NULL_.*
                .*_DH_anon_.*
           
       
   
]]


--
View this message in context:
http://old.nabble.com/SSL-Woes.-Can%27t-get-past-handshake_failure-messa
ge-tp26163597p26163597.html
Sent from the cxf-user mailing list archive at Nabble.com.