class ActiveUtils::Connection

def http

def http
  http = Net::HTTP.new(endpoint.host, endpoint.port, proxy_address, proxy_port)
  configure_debugging(http)
  configure_timeouts(http)
  configure_ssl(http)
  configure_cert(http)
  http
end