Re: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-05-08 Thread Kyle Hamilton
The SSL_set_cipher_list() call is in the wrong format. Please look at the man page for 'ciphers(3ssl)'. -Kyle H On Wed, May 6, 2009 at 6:06 PM, Vivek Mathew -X (vivmathe - WIPRO at Cisco) wrote: > Hi David & OpenSSL-users, > > We did compile against the new header files. > > I checked this a li

RE: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-05-07 Thread Vivek Mathew -X (vivmathe - WIPRO at Cisco)
Hi David & OpenSSL-users, We did compile against the new header files. I checked this a little more on the Server side. On the Server side, I use IIS 6.0. It looks like even before it hits my Server side code, Windows may be cutting the TCP connection. The Server has Windows Server 2003, Ente

RE: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-05-07 Thread Vivek Mathew -X (vivmathe - WIPRO at Cisco)
Hi David & OpenSSL-users, We did compile against the new header files. I checked this a little more on the Server side. On the Server side, I use IIS 6.0. It looks like even before it hits my Server side code, Windows may be cutting the TCP connection. The Server has Windows Server 2003, Ente

RE: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-03-27 Thread David Schwartz
> Hi Srinivas, > We compiled our code with the new version of lib files from > openssl-0.9.8j version and replaced the new client dll's. > Is any specific step has to be followed? > Regards, > Sweta Did you compile against the new header files? The client is saying the server cut the TCP conne

RE: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-03-27 Thread Sweta Singh -X (swesingh - WIPRO at Cisco)
Sent: Friday, March 27, 2009 3:16 AM To: openssl-users@openssl.org; openssl-users@openssl.org Cc: Suresh Pallavur Hariharan -X (surharih - WIPRO at Cisco); Sweta Singh -X (swesingh - WIPRO at Cisco) Subject: Re: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j Hi Vivek.

Re: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-03-26 Thread Kyle Hamilton
If it is returning SSL_ERROR_SYSCALL, you need to examine the value of errno, possibly with perror(). Basically, the library is returning this because the underlying OS has signalled (via errno) that some system call has failed with an error condition. If you don't understand what could be causin

Re: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-03-26 Thread Srinivas Jonnalagadda
Cisco)" Sent: Mar 26, 2009 12:40 PM To: openssl-users@openssl.org Cc: "Suresh Pallavur Hariharan -X (surharih - WIPRO at Cisco)" , "Sweta Singh -X (swesingh - WIPRO at Cisco)" Subject: SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j Hi,   Our applica

SSL_connect() fails after upgrade from OpenSSL 0.9.7d to OpenSSL 0.9.8j

2009-03-26 Thread Vivek Mathew -X (vivmathe - WIPRO at Cisco)
Hi, Our application was previously making use of the OpenSSL 0.9.7d library. Recently we have upgraded to the 0.9.8j version and have re-built both the Client and Server executables. However, after the upgrade we are facing a problem with the client side failing to connect to the server. After