method

new_http

new_http()
private

No documentation available.

# File activeresource/lib/active_resource/connection.rb, line 160
      def new_http
        if @proxy
          Net::HTTP.new(@site.host, @site.port, @proxy.host, @proxy.port, @proxy.user, @proxy.password)
        else
          Net::HTTP.new(@site.host, @site.port)
        end
      end