Service


Для получения полного списка операций щелкните здесь.

Execute

Тест

Форма для тестирования доступна только для запросов от локальных компьютеров.

SOAP 1.1

В следующем примере показаны запрос и ответ SOAP 1.1. Вместо элементов-заполнителей следует подставить фактические значения.

POST /dwhservice/service.asmx HTTP/1.1
Host: mf-ao.ru
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://keysystems.ru/Execute"

<?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>
    <Execute xmlns="http://keysystems.ru/">
      <fullAssemblyName>string</fullAssemblyName>
      <typeName>string</typeName>
      <methodName>string</methodName>
      <connectionString>string</connectionString>
      <commandTimeout>int</commandTimeout>
      <code>string</code>
      <doCompression>boolean</doCompression>
      <cargs />
    </Execute>
  </soap:Body>
</soap:Envelope>
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>
    <ExecuteResponse xmlns="http://keysystems.ru/">
      <ExecuteResult>base64Binary</ExecuteResult>
    </ExecuteResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

В следующем примере показаны запрос и ответ SOAP 1,2. Вместо элементов-заполнителей следует подставить фактические значения.

POST /dwhservice/service.asmx HTTP/1.1
Host: mf-ao.ru
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Execute xmlns="http://keysystems.ru/">
      <fullAssemblyName>string</fullAssemblyName>
      <typeName>string</typeName>
      <methodName>string</methodName>
      <connectionString>string</connectionString>
      <commandTimeout>int</commandTimeout>
      <code>string</code>
      <doCompression>boolean</doCompression>
      <cargs />
    </Execute>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <ExecuteResponse xmlns="http://keysystems.ru/">
      <ExecuteResult>base64Binary</ExecuteResult>
    </ExecuteResponse>
  </soap12:Body>
</soap12:Envelope>