getDfsGUID

Retrieves the currently assigned DFS GUID for a volume.

Request

<getDfsGUID>
   <volumeName/>
</getDfsGUID>

Reply

<getDfsGUID>
   <dfsGUID/>
   <result value=" ">
      <description/>
   </result>
</getDfsGUID>

Elements

volumeName

Specifies the name of the volume from which to get the GUID.

dfsGUID

Specifies the actual GUID that was assigned to this volume for use with DFS.

result

Specifies an error value or 0 (for no error).

description

Specifies a text description of the result.

Example

A nssRequest packet to return the DFS GUID is as follows:

<nssRequest>
   <dfs>
      <getDfsGUID>
         <volumeName>NSS1</volumeName>
      </getDfsGUID>
   </dfs>
</nssRequest>

A nssReply packet to the get DFS GUID command follows:

<nssReply>
   <dfs>
      <getDfsGUID>
         <dfsGUID>C212F8B4-3223-01D6-80-00-FBDA22AE6917
         </dfsGUID>
         <result value="0">
            <description/>success</description>
         </result>
      </getDfsGUID>
   </dfs>

   <result value="0">
      <description/>zOK</description>
   </result>
</nssReply>