Sha256: 3bb82170b5c4b2b34a52456782311a75bd7ccbda4b79cd3fbfdbe2acb3468459

Contents?: true

Size: 1.85 KB

Versions: 5

Compression:

Stored size: 1.85 KB

Contents

#############################################################################
# Copyright © 2010 Dan Wanek <dan.wanek@gmail.com>
#
#
# This file is part of WinRM.
# 
# WinRM is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation, either version 3 of the License, or (at
# your option) any later version.
# 
# WinRM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
# Public License for more details.
# 
# You should have received a copy of the GNU General Public License along
# with WinRM.  If not, see <http://www.gnu.org/licenses/>.
#############################################################################

require 'httpclient'
require 'savon'
require 'uuidtools'
require 'base64'
require 'nokogiri'

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

5 entries across 5 versions & 1 rubygems

Version Path
winrm-1.0.6 lib/winrm/soap_provider.rb
winrm-1.0.5 lib/winrm/soap_provider.rb
winrm-1.0.4 lib/winrm/soap_provider.rb
winrm-1.0.3 lib/winrm/soap_provider.rb
winrm-1.0.2 lib/winrm/soap_provider.rb