I\'m having a terrible time getting SSL to verify a certificate. I\'m completely ignorant on how certificates work so that\'s a major handicap to begin with. Here\'s the error
Putting the http.auth.ssl.verify_mode = :none inside the client.request block does not work for me.
http.auth.ssl.verify_mode = :none
client.request
I had to use:
client = Savon::Client.new do |wsdl, http| http.auth.ssl.verify_mode = :none wsdl.document = #YOUR_WSDL_URL_HERE end
Using Savon 0.9.9 and Ruby 1.9.3-p125