RE: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-10 Thread chithuanand
Please see my comments inline. Does the server/service report (usually log) anything relevant to your access/connection/request/whatever? In particular, if it logs something about server error you need to look there. If it too reports seeing a reset, coming from your direction, then you

RE: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-10 Thread chithuanand
hi, We have tried settiong the ciphersuite using SSL_CTX_set_cipher_list(), as eNULL/NULL-MD5/DEFAULT. But we get handshake error. In the server also we have tried giving the encryption= true and cipherlist to all of the above settings. eNULL/NULL-MD5 /any null values give handshake error.

RE: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-10 Thread Shaw Graham George
Sent: 10 June 2009 13:22 To: openssl-users@openssl.org Subject: RE: SSL_read() returns SSL_ERROR_SYSCALL hi, We have tried settiong the ciphersuite using SSL_CTX_set_cipher_list(), as eNULL/NULL-MD5/DEFAULT. But we get handshake error. In the server also we have tried giving the encryption

RE: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-09 Thread chithuanand
The Winsock2 WSAGetLastError() returns 100054, means Socket forcefully shut down by remote host. Initially we had only one webservice class. This webservice class is based on gSOAP generated proxy classes, which will in turn use openSSL functions to access a secured webservice.All the methods

RE: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-09 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of chithuanand Sent: Tuesday, 09 June, 2009 00:13 The Winsock2 WSAGetLastError() returns 100054, means Socket forcefully shut down by remote host. Precisely 10054 is connection-reset. In TCP shut down normally is used for the

SSL_read() returns SSL_ERROR_SYSCALL

2009-06-08 Thread chithuanand
of data). The follwoing error is returned - -- SSL_read() returns SSL_ERROR_SYSCALL error:0005:lib(0):func(0):DH lib --- This is not consistent

Re: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-08 Thread Kyle Hamilton
- --  SSL_read() returns SSL_ERROR_SYSCALL error:0005:lib(0):func(0):DH lib --- This is not consistent across the different methods. The methods which pass bigger chunks of data in the request consistently

RE: SSL_read() returns SSL_ERROR_SYSCALL

2009-06-08 Thread Dave Thompson
for communication. My problem is that - while transferring data, SSL_read() always fails (after transferring few KB of data). The follwoing error is returned - --  SSL_read() returns SSL_ERROR_SYSCALL