I'm struggling to get the Savon gem to connect to one of our servers. I keep getting an error stating that I can not get past ssl. I read a lot of guides and corrections, but none of them work.
Any help appreciated - my Monday will do it if I can get past him :-).
Error:
D, [2011-06-20T09:43:02.002993
My code is:
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
source share