Sha256: 5f9a2b4a6a706301844820fb00a3d15093e5c83910fb50a4896a9ddac52b9328

Contents?: true

Size: 1.65 KB

Versions: 11

Compression:

Stored size: 1.65 KB

Contents

# encoding: UTF-8
#
# Copyright 2010 Dan Wanek <dan.wanek@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'httpclient'
require 'builder'
require 'gyoku'
require 'uuidtools'
require 'base64'

# SOAP constants for WinRM
module WinRM
  NS_SOAP_ENV    = 's'   # http://www.w3.org/2003/05/soap-envelope
  NS_ADDRESSING  = 'a'   # http://schemas.xmlsoap.org/ws/2004/08/addressing
  NS_CIMBINDING  = 'b'   # http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd
  NS_ENUM        = 'n'   # http://schemas.xmlsoap.org/ws/2004/09/enumeration
  NS_TRANSFER    = 'x'   # http://schemas.xmlsoap.org/ws/2004/09/transfer
  NS_WSMAN_DMTF  = 'w'   # http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
  NS_WSMAN_MSFT  = 'p'   # http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd
  NS_SCHEMA_INST = 'xsi' # http://www.w3.org/2001/XMLSchema-instance
  NS_WIN_SHELL   = 'rsp' # http://schemas.microsoft.com/wbem/wsman/1/windows/shell
  NS_WSMAN_FAULT = 'f'   # http://schemas.microsoft.com/wbem/wsman/1/wsmanfault
  NS_WSMAN_CONF  = 'cfg' # http://schemas.microsoft.com/wbem/wsman/1/config
end

require 'winrm/exceptions/exceptions'
require 'winrm/winrm_service'
require 'winrm/http/transport'

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
winrm-1.5.0 lib/winrm/soap_provider.rb
winrm-1.4.0 lib/winrm/soap_provider.rb
winrm-1.3.5 lib/winrm/soap_provider.rb
winrm-1.3.5.dev lib/winrm/soap_provider.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/winrm-1.3.4/lib/winrm/soap_provider.rb
winrm-1.3.4 lib/winrm/soap_provider.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/winrm-1.3.3/lib/winrm/soap_provider.rb
winrm-1.3.3 lib/winrm/soap_provider.rb
winrm-1.3.2 lib/winrm/soap_provider.rb
winrm-1.3.1 lib/winrm/soap_provider.rb
winrm-1.3.0 lib/winrm/soap_provider.rb