Re: sslv3 alert certificate unknown

2009-06-02 Thread Frank Vyncke
Dave, This explains the problems I have. Indeed, it appears I need to install my home generated certificate in a TrustManager. I indeed get the SSL exception on the java side. Thanks for the pointer Frank On 02/06/2009 03:07, "Dave Thompson" wrote: >> From: owner-openssl-us...@openssl.org On

RE: sslv3 alert certificate unknown

2009-06-01 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Kyle Hamilton > Sent: Friday, 29 May, 2009 20:29 > "certificate unknown" means that the Java side sent an alert > to state that there's a problem with the certificate, but > it's not going to tell you what it is. It probably it > relates to

Re: sslv3 alert certificate unknown

2009-05-29 Thread Kyle Hamilton
"certificate unknown" means that the Java side sent an alert to state that there's a problem with the certificate, but it's not going to tell you what it is. It probably it relates to the fact that the CA that you're using on your openssl server isn't in the Java trust store. (The most correct an

sslv3 alert certificate unknown

2009-05-29 Thread Vyncke, Frank
Title: sslv3 alert certificate unknown Dear, I have a gSOAP server, using OpenSSL for secure communication. When I use a gSOAP client, everything works fine. When I try a JAVA client, I get the error error:14094416:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate unknown I don&#

AW: sslv3 alert certificate unknown

2002-08-21 Thread Tarassov Vadim
Hallo,   error:14094416:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate unknown   probably means that your client does not send its certificate to server, but server would to get it. In order to get you client to send certificate you would probably have to   1) read jsse manuals 2) aft

sslv3 alert certificate unknown

2002-08-20 Thread Jason Jesso
I have a ssl server written in C that uses openssl.  I have a ssl client in Java that uses JSSE. On the server side SSL_accept fails and the error message is: error:14094416:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate unknown How can I fix this? My client code is: === imp