module WinRM::WSMV::SOAP
Constants
- NS_ADDRESSING
- NS_CIMBINDING
- NS_ENUM
- NS_SCHEMA_INST
- NS_SOAP_ENV
- NS_TRANSFER
- NS_WIN_SHELL
- NS_WSMAN_CONF
- NS_WSMAN_DMTF
- NS_WSMAN_FAULT
- NS_WSMAN_MSFT
Public Instance Methods
namespaces()
click to toggle source
# File lib/winrm/wsmv/soap.rb, line 32 def namespaces @namespaces ||= { 'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema', 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', 'xmlns:env' => 'http://www.w3.org/2003/05/soap-envelope', "xmlns:#{NS_ADDRESSING}" => 'http://schemas.xmlsoap.org/ws/2004/08/addressing', "xmlns:#{NS_CIMBINDING}" => 'http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd', "xmlns:#{NS_ENUM}" => 'http://schemas.xmlsoap.org/ws/2004/09/enumeration', "xmlns:#{NS_TRANSFER}" => 'http://schemas.xmlsoap.org/ws/2004/09/transfer', "xmlns:#{NS_WSMAN_DMTF}" => 'http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd', "xmlns:#{NS_WSMAN_MSFT}" => 'http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd', "xmlns:#{NS_WIN_SHELL}" => 'http://schemas.microsoft.com/wbem/wsman/1/windows/shell', "xmlns:#{NS_WSMAN_CONF}" => 'http://schemas.microsoft.com/wbem/wsman/1/config' } end