Sha256: b1d4f02e867c59c07d02fb7a46d3d65e4ad7b0e7ac1536aaa2ad3470125facc4
Contents?: true
Size: 1.8 KB
Versions: 4
Compression:
Stored size: 1.8 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/soap/xml' require 'uuid' require 'gssapi' 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 end require 'winrm/exceptions/exceptions' require 'winrm/winrm_service' require 'winrm/http/transport'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
winrm-1.0.0rc4 | lib/winrm/soap_provider.rb |
winrm-1.0.0rc3 | lib/winrm/soap_provider.rb |
winrm-1.0.0rc2 | lib/winrm/soap_provider.rb |
winrm-1.0.0rc1 | lib/winrm/soap_provider.rb |