FileDearchiveGroup
Извлекает несколько файлов из архива.
Запрос
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/FileDearchiveGroup"
<?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>
<FileDearchiveGroup xmlns="http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/">
<sessionId>guid</sessionId>
<items>string</items>
<delay>boolean</delay>
</FileDearchiveGroup>
</soap:Body>
</soap:Envelope>
python
- Параметры
-
- sessionId
-
Идентификатор пользовательской сессии
- items
-
Список идентификаторов архивируемых файлов
- delay
-
Если true, то метод отметит файл, как извлеченный из архива, а непосредственное извлечение выполнено позднее
Строка items
должна соответствовать формату элемента GroupOperation
, приведенному в схеме ServerRequests.xsd
:
<xsd:element name="GroupOperation">
<xsd:annotation>
<xsd:documentation>Group operation items</xsd:documentation>
</xsd:annotation>
<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>
xml
Ответ
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>
<FileDearchiveGroupResponse xmlns="http://schemas.docsvision.com/Platform/2009-02-03/StorageServer/">
<failedItems>string</failedItems>
</FileDearchiveGroupResponse>
</soap:Body>
</soap:Envelope>
python