I'm struggling to get the Savon gem to connect to one of our servers. I keep getting an error stating I can't get past the ssl. I've read numerous tutorials and fixes but none seem to work.

Any help appreciated - this will make my Monday if I can get past it :-).

Error:

D, [2011-06-20T09:43:02.002993 #10328] DEBUG -- : Retrieving WSDL from: http://path_to_wsdl:4443/sm/services/mailing/2009/03/02?wsdl
D, [2011-06-20T09:43:02.129057 #10328] DEBUG -- : HTTPI executes HTTP GET using the httpclient adapter
/.rvm/gems/ruby-1.9.2-p0/gems/httpclient-2.2.1/lib/httpclient/session.rb:276:in `connect': SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: sslv3 alert unexpected message (OpenSSL::SSL::SSLError)

My code:

require 'savon'

client = Savon::Client.new "path_to_my_wsdl"

client.http.auth.ssl.cert_file = "path/cert.pem"

client.http.auth.ssl.cert_key_file = "/path/localhost.key"
client.http.auth.ssl.verify_mode = :none

client.wsse.credentials "username", "password"

client.wsdl.soap_actions
link|improve this question

20% accept rate
2  
Are you certain SSL is running on port 4433? – GregS Jun 20 '11 at 13:49
As far as I know - when I access the wsdl file its under https - if I do it via browser it flags it as a self signed certificate. I'm wondering why/how the verify_mode = :none isn't kicking in. – Northband Jun 20 '11 at 14:40
which version of the httpi gem are you using? – rubiii Jun 20 '11 at 16:59
Was running httpi (0.9.3) but now updated to 0.9.4. Same output though. :-( – Northband Jun 20 '11 at 17:25
not sure if that's the problem, but it seems that if verify_mode is set to :none, both cert and key are not set?! you could try to remove the unless statement. – rubiii Jun 20 '11 at 17:31
show 8 more comments
feedback

1 Answer

Not sure if you did this already, but when I had to use Savon for a project I found it incredibly useful to make sure the Soap server was working as I thought it should with SoapUI (http://www.eviware.com/). You can then output the SOAP request from the two and compare..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.