Methods

Files

WinRM::HTTP::HttpSSL

Uses SSL to secure the transport

Public Class Methods

new(endpoint, user, pass, ca_trust_path = nil, opts) click to toggle source
# File lib/winrm/http/transport.rb, line 76
def initialize(endpoint, user, pass, ca_trust_path = nil, opts)
  super(endpoint)
  @httpcli.set_auth(endpoint, user, pass)
  @httpcli.ssl_config.set_trust_ca(ca_trust_path) unless ca_trust_path.nil?
  no_sspi_auth! if opts[:disable_sspi]
  basic_auth_only! if opts[:basic_auth_only]
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.