deviceConnectionSummary Data Type

DeviceConnectionSummary represents an aggregated summary of the connection status of a group of devices at a point in time. It returns the number of devices currently connected, the number of devices which disconnect cleanly, the number of devices which disconnected abruptly, and the number of devices which have been disabled.

Namespace
http://eurotech.com/edc/2.0
Schema
edc.xsd
Properties
name data type type namespace min/max occurs constraints description
connected int element edc 1/1 required  
disabled int element edc 1/1 required  
disconnected int element edc 1/1 required  
enabled int element edc 1/1 required  
missing int element edc 1/1 required  

Example

<deviceConnectionSummary xmlns="http://eurotech.com/edc/2.0">
  <connected>...</connected>
  <disconnected>...</disconnected>
  <missing>...</missing>
  <enabled>...</enabled>
  <disabled>...</disabled>
</deviceConnectionSummary>