LockClearGroup
Снимает блокировку с нескольких объектов.
Запрос
POST /DocsVision/StorageServer/StorageServerService.asmx HTTP/1.1
Host: DOCSVISION_SERVER.COM
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/LockClearGroup"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<LockClearGroup xmlns="http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/">
<sessionId>guid</sessionId>
<items>string</items>
<forceUnlock>boolean</forceUnlock>
</LockClearGroup>
</soap:Body>
</soap:Envelope>
- Параметры
-
- sessionId
-
Идентификатор пользовательской сессии
- items
-
Список объектов
- forceUnlock
-
Для снятия блокировки, установленной в другой сессии, указать
true
. Для принудительной разблокировки необходимы права администратора Docsvision.
Строка items
должна соответствовать формату элемента GroupOperation
, приведенному в схеме ServerRequests.xsd
:
<xsd:element name="GroupOperation">
<xsd:complexType>
<xsd:sequence maxOccurs="unbounded">
<xsd:element name="Item">
<xsd:complexType>
<xsd:attribute name="ID" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
Ответ
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<LockClearGroupResponse xmlns="http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/">
<failedItems>string</failedItems>
</LockClearGroupResponse>
</soap:Body>
</soap:Envelope>
Ответ содержит список объектов, которые не были разблокированы из-за ошибки.