2.2.4.46 SequenceIDType Complex Type

This type MUST be used to uniquely identify a particular message sent from client to server or from server to client as part of an operation. The SequenceID type MUST adhere to the namespace "http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd". This type is an unsigned 64-bit integer starting from 1 (on the client and the server) for a new operation and incremented monotonically by each side (client or server) with each message of the operation.

The schema MUST be as shown here.

 <xs:complexType name="SequenceIDType">
   <xs:sequence>
     <xs:element name="SequenceID"
       type="xs:unsignedLong"
      />
   </xs:sequence>
   <xs:anyAttribute
     process_contents="lax"
     namespace="##any"
    />
 </xs:complexType>

Element

SequenceID: A SOAP header containing an unsigned 64-bit integer that uniquely identifies a message sent from the client or from the server as part of an operation identified by a given OperationID value. This allows the receiver of the request message to correlate messages that are part of the same operation.