From: "naruse (Yui NARUSE)" Date: 2013-06-14T00:06:21+09:00 Subject: [ruby-core:55477] [ruby-trunk - Feature #8461][Assigned] Easy way to disable certificate checking in XMLRPC::Client Issue #8461 has been updated by naruse (Yui NARUSE). Status changed from Closed to Assigned kou (Kouhei Sutou) wrote: > I've added XMLRPC::Client#http. Use it like: > > c = XMLRPC::Client.new(....) > c.http.verify_mode = OpenSSL::SSL::VERIFY_NONE Could you edit NEWS to introduce the new feature? ---------------------------------------- Feature #8461: Easy way to disable certificate checking in XMLRPC::Client https://bugs.ruby-lang.org/issues/8461#change-39911 Author: herwinw (Herwin Weststrate) Status: Assigned Priority: Low Assignee: kou (Kouhei Sutou) Category: lib Target version: I have an awful lot of XMLRPC code that does the following: c = XMLRPC::Client.new(....) c.instance_variable_get(:@http).instance_variable_set(:@verify_mode, OpenSSL::SSL::VERIFY_NONE) It would be nice if some syntactic sugar would be added so I could just do something like this: c.set_ssl_verify_mode(OpenSSL::SSL::VERIFY_NONE) -- http://bugs.ruby-lang.org/