Команда для перехода в состояние «отошел».
Метод HTTP-запроса:
POST
Шаблон HTTP-запроса:
http://host:port/<DOMAIN>/service/cc/arm/auxwork
Коды ответов:
200 — Ошибки передаются в теле ответа
Ошибки, передаваемые в теле ответа:
XSD-схема XML-запроса/ответа:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="error.xsd"/>
<!-- responseType -->
<xs:complexType name="Auxwork">
<xs:attribute name="reason" type="xs:string" use="required"/>
</xs:complexType>
<!-- in -->
<xs:element name="in">
<xs:complexType>
<xs:all>
<xs:element name="request">
<xs:complexType>
<xs:sequence>
<xs:element name="auxwork" type="Auxwork"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:all>
</xs:complexType>
</xs:element>
<!-- out -->
<xs:element name="out">
<xs:complexType>
<xs:choice>
<xs:element name="response">
<xs:complexType>
<xs:sequence>
<xs:element name="ok"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="error" type="errorType"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema> |
Пример использует технологию websocket |
Пример:
Запрос:
0100000001620013auxwork
[
{
"_name": "in",
"_content": [
{
"_name": "request",
"_content": [
{
"_name": "auxwork",
"_attributes": {
"reason": "Busy"
}
}
]
}
]
}
] |
Код ответа:
200
Ответ:
0100000002140013200
[
{
"_name": "out",
"_attributes": {
"xmlns:xs": "http://www.w3.org/2001/XMLSchema-instance",
"xs:noNamespaceSchemaLocation": "auxwork.xsd"
},
"_content": [
{
"_name": "response",
"_content": [
{
"_name": "ok"
}
]
}
]
}
] |