### WS-Management Get Response for Computer System Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This snippet shows a successful WS-Management Get response containing CIM_ComputerSystem details. It includes attributes like Caption, CreationClassName, and Description. ```xml http://schemas.xmlsoap.org/ws/2004/09/transfer/GetResponse uuid:1cf13918-cbf8-4025-9837-fcb4b28e7018 uuid:3bf019b7-23e2-13e2-8002-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous BMC 32 ComputerSystem 14 BMC 32 - IPMI v1.5 - fw v0.30.0.0.0.0 IPMI Controller 32 2 5 Wiseman-https://wiseman.dev.java.net IPMI Controller 32 Other 0-0 12 Hardware Management Controller ``` -------------------------------- ### WS-Management Get Request for Computer System Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This snippet demonstrates a WS-Management Get request to retrieve information about a CIM_ComputerSystem resource. It includes necessary headers like Action, To, ResourceURI, and SelectorSet. ```xml http://schemas.xmlsoap.org/ws/2004/09/transfer/Get http://192.168.0.17:8080/wsman/ http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem uuid:3bf019b7-23e2-13e2-8002-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous IPMI Controller 32 ComputerSystem ``` -------------------------------- ### Build Openwsman Client Source: https://github.com/openwsman/wsmancli/blob/master/README.md Standard build process for the Openwsman client using autotools. Ensure openwsman client libraries are installed first. ```bash ./bootstrap ./configure make ``` -------------------------------- ### WS-Man Get Request - Invalid Selectors Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This is an example of a WS-Man Get request that fails due to invalid selectors. The response indicates a 'wsman:InvalidSelectors' fault. ```xml http://schemas.xmlsoap.org/ws/2004/09/transfer/Get http://192.168.0.17:8080/wsman/ http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_NumericSensor uuid:3bf9f1f8-23e2-13e2-8005-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous NumericSensor ``` ```xml http://schemas.dmtf.org/wbem/wsman/1/wsman/fault uuid:04ed17b8-9fba-4fd0-a244-0570c46ce290 uuid:3bf9f1f8-23e2-13e2-8005-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous env:Sender wsman:InvalidSelectors The Selectors for the resource were not valid. http://schemas.dmtf.org/wbem/wsman/1/wsman/faultDetail/InsufficientSelectors ``` -------------------------------- ### WS-Man Enumerate Request Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This is a WS-Man Enumerate request, used to retrieve a list of resources. The response indicates the start of an enumeration process. ```xml http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate http://192.168.0.17:8080/wsman/ http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_NumericSensor uuid:3bfc992c-23e2-13e2-8006-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous ``` ```xml http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse uuid:e427e797-3a09-480b-b022-b52e79a2178f uuid:3bfc992c-23e2-13e2-8006-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous ``` -------------------------------- ### WS-Management Get Request with Invalid Resource URI Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This snippet shows a WS-Management Get request that is expected to fail due to an invalid Resource URI. This is useful for testing error handling and validation of requests. ```xml http://schemas.xmlsoap.org/ws/2004/09/transfer/Get http://192.168.0.17:8080/wsman/ ``` -------------------------------- ### Enumerate CIM_NumericSensor Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt Initiates an enumeration of CIM_NumericSensor resources. This request is typically the first step in retrieving a collection of sensor data. ```xml http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate http://192.168.0.17:8080/wsman/ http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_NumericSensor uuid:3c0e392d-23e2-13e2-800b-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous ``` -------------------------------- ### WS-Management Identify Response Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This snippet represents a successful Identify response in WS-Management. It contains details about the product vendor, version, and protocol specifications. ```xml The Wiseman Project - https://wiseman.dev.java.net 0.5 http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd 1.0.0a 200612040909 ``` -------------------------------- ### PullResponse for CIM_NumericSensor Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt Contains the response to a Pull request, including an EnumerationContext and a list of CIM_NumericSensor items. This response may include partial results and an indication of the end of the sequence. ```xml http://schemas.xmlsoap.org/ws/2004/09/enumeration/PullResponse uuid:4f6662c9-7152-4f80-8a99-9168d03d0a03 uuid:3c10d2ef-23e2-13e2-800c-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous 1fb7f89f-1bed-4b7e-b385-43ae75217f40 0 2 Temperature(10.0.32) NumericSensor 190 OK PCI-X Slot Temp(10.0.32):Temperature for Other 1 10.0.32 PCI-X Slot Temp(10.0.32) 2 5 at or above upper critical threshold at or above upper non-recoverable threshold 0 12 0 2 ComputerSystem IPMI Controller 32 -1 550 -550 450 ``` -------------------------------- ### WS-Management Identify Request Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt This snippet shows the XML structure for an Identify request in WS-Management. It is used to discover information about the WS-Management service. ```xml ``` -------------------------------- ### Pull CIM_NumericSensor Data Source: https://github.com/openwsman/wsmancli/blob/master/tests/interop/WISEMAN-results.txt Requests a batch of enumerated items for CIM_NumericSensor resources using an EnumerationContext. This is used to retrieve data after an Enumerate operation. ```xml http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull http://192.168.0.17:8080/wsman/ http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_NumericSensor uuid:3c10d2ef-23e2-13e2-800c-be0448251100 http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous 1fb7f89f-1bed-4b7e-b385-43ae75217f40 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.