NetworkRecalc (ZWS)

Выполняет переключения на сети в соответствии с состоянием запорной арматуры

Схема запроса:

<xs:element name="zulu-server">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="Command">
                    <xs:complexType>
                        <xs:choice>
                            <xs:element name="NetworkRecalc" type="typeLayer"/>
                        </xs:choice>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
</xs:element>   
   

Схема ответа:

   <xs:element name="zwsResponse">
        <xs:complexType>
            <xs:sequence>
                <xs:choice minOccurs="0">                    
                    <xs:element name="NetworkRecalc" type="typeNetworkRecalcResponse"/>                  
                </xs:choice>
                <xs:element name="RetVal" type="xs:integer"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
	
	
	<xs:complexType name="typeNetworkRecalcResponse">
        <xs:all>
            <xs:element name="Count" type="xs:integer"/>
            <xs:element name="Keys" type="typeListOfIntegers" minOccurs="0"/>
        </xs:all>
    </xs:complexType>
        

Пример запроса:

<?xml version="1.0" encoding="UTF-8"?>
<zulu-server service="zws" version="1.0.0">
    <Command>
        <NetworkRecalc>        
             <Layer>riga:teplo</Layer>        
        </NetworkRecalc>
    </Command>
</zulu-server>
   

Пример ответа:

         
<?xml version="1.0" encoding="UTF-8"?>
<zwsResponse>
    <NetworkRecalc>
        <Count>55</Count>
        <Keys>14383 14404 19588 10261 10273 13543 10285 10265 13547 19590 19153 10242 10253 19615
            10248 10257 10206 10212 10218 10226 17933 9220 9224 14770 5614 7007 5774 5758 5764 5770
            5780 5784 7001 5309 10287 10295 10303 10311 10335 10343 10351 10317 10333 19617 19611
            10281 10321 10329 10291 10307 10339 10347 10361 19661 10277</Keys>
    </NetworkRecalc>
    <RetVal>55</RetVal>
</zwsResponse>