class Fedora::Connection

def http

remote service and resources.
Creates new Net::HTTP instance for communication with
def http
  http             = Net::HTTP.new(@site.host, @site.port)
  http.use_ssl     = @site.is_a?(URI::HTTPS)
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE if http.use_ssl
  http
end