From: jackster the jackle Date: 2010-11-13T00:34:06+09:00 Subject: Re: Parsing XML with Ruby botp wrote in post #960976: > require 'net/http' > #=> true > uri = URI.parse("https://www.chase.com/") > #=> # > http = Net::HTTP.new(uri.host, uri.port) > #=> # > http.use_ssl = true > #=> true > http.verify_mode = OpenSSL::SSL::VERIFY_NONE > #=> 0 That is a good way of doing it, a step at a time through irb...I don't usually do it that way but it seems to be a good way to isolate the failure if any. When I get down to the line "http.use_ssl = true", it fails with this error message: irb(main):004:0> http.use_ssl = true NoMethodError: undefined method `use_ssl=' for # from (irb):4 irb(main):005:0> -- Posted via http://www.ruby-forum.com/.