ClusterConfig.xml

Returns the cluster configuration.

Definition

 <!ELEMENT cluster (name, quorum, protocol, ipAddress, port)>
 <!ELEMENT name (#CDATA)>
 <!ELEMENT quorum membership, timeout)>
 <!ELEMENT membership (#CDATA)>
 <!ELEMENT timeout (#CDATA)>
 <!ELEMENT protocol (heartbeat, tolerance)>
 <!ELEMENT heartbeat (#CDATA)>
 <!ELEMENT tolerance (#CDATA)>
 <!ELEMENT ipAddress (#CDATA)>
 <!ELEMENT port (#CDATA)>
 

Example

 <ncsReply>
   <cluster>
     <name>CLUSTER</name>
     <quorum>
       <membership>3</membership>
       <timeout>60</timeout>
     </quorum>
     <protocol>
       <heartbeat>1</heartbeat>
       <tolerance>8</tolerance>
     </protocol>
     <ipAddress>10.7.5.200</ipAddress>
     <port>7023</port>
   </cluster>
 </ncsReply>