Have you had any luck with this? I've recompiled Ruby after installing OpenSSL.
On Thursday, January 10, 2013 9:45:54 PM UTC-4, plag...@gmail.com wrote:Hi, Im using savon to implement a simple REST API.The code Im trying to run is this:url = "https://leona.com/lux/arhi"client = Savon::Client.new(url+"?wsdl")client.wsdl.endpoint = url #I rewrite the endpoint because the wsdl is configured to use http, but the server is expecting https.client.wsdl.soap_actionsThe scripts hangs for about a minute or so and the I get:Errno::ECONNRESET: Connection reset by peer - SSL_connectI'm using savon 1.2.0 with ruby-1.9.2-p320 and rails 3.2.9.PS. I'm sure that I have the correct host and that it has to be https.
Change the SSL version to use.
Savon.client(ssl_version: :SSLv3) # or one of [:TLSv1, :SSLv2]
Hi Artie,How did you forced it to use ssl3? Have you any code to share?
I tried by monkey patching Wasabi to force the ssl version, but that seems not to be the fix for me.
Thanks!Peter.