SWinED


Click here for a complete list of operations.

Post

Передати документи

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /SwinEd.asmx HTTP/1.1
Host: obmen.sfs.gov.ua
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://swined/Post"

<?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>
    <Post xmlns="http://swined/">
      <senderEDRPOU>string</senderEDRPOU>
      <senderDept>int</senderDept>
      <docsType>Original or Response</docsType>
      <docs>
        <DocumentInData>
          <dept>int</dept>
          <docId>string</docId>
          <document>base64Binary</document>
          <EDRPOU>string</EDRPOU>
          <originalDocId>string</originalDocId>
          <task>int</task>
        </DocumentInData>
        <DocumentInData>
          <dept>int</dept>
          <docId>string</docId>
          <document>base64Binary</document>
          <EDRPOU>string</EDRPOU>
          <originalDocId>string</originalDocId>
          <task>int</task>
        </DocumentInData>
      </docs>
    </Post>
  </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>
    <PostResponse xmlns="http://swined/">
      <PostResult>SWINED_OK or SWINED_TEMPORARY_UNAVAILABLE or SWINED_EDRPOU_INVALID or SWINED_EMPTY_DATA or SWINED_CRYPT_ERROR_UNSIGN or SWINED_CRYPT_ERROR_DECRYPT or SWINED_CRYPT_ERROR_INTERNAL or SWINED_SIGN_ABSENT or SWINED_SIGN_EDRPOU_MISCOMPARE or SWINED_DOC_EDRPOU_INVALID or SWINED_DOC_ID_INVALID or SWINED_DOC_EMPTY or SWINED_DOC_ALREADY_REGISTERED or SWINED_ORIG_DOC_ID_INVALID or SWINED_ORIG_DOC_ABSENT or SWINED_DOC_TYPE_INVALID or SWINED_DOC_TOO_BIG or SWINED_TICKET_INVALID_SIGNS_SEQUENCE or SWINED_TICKET_INVALID_CONTENT or SWINED_TICKET_DOC_ABSENT or SWINED_CRYPTOLIB_ABSENT or SWINED_CERTIFICATE_INVALID or SWINED_CHUNK_NUMBER_INVALID or SWINED_CHUNK_NUMBER_DUPLICATED or SWINED_CHUNKS_MISMATCHED</PostResult>
      <errorDocIdx>int</errorDocIdx>
    </PostResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /SwinEd.asmx HTTP/1.1
Host: obmen.sfs.gov.ua
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>
    <Post xmlns="http://swined/">
      <senderEDRPOU>string</senderEDRPOU>
      <senderDept>int</senderDept>
      <docsType>Original or Response</docsType>
      <docs>
        <DocumentInData>
          <dept>int</dept>
          <docId>string</docId>
          <document>base64Binary</document>
          <EDRPOU>string</EDRPOU>
          <originalDocId>string</originalDocId>
          <task>int</task>
        </DocumentInData>
        <DocumentInData>
          <dept>int</dept>
          <docId>string</docId>
          <document>base64Binary</document>
          <EDRPOU>string</EDRPOU>
          <originalDocId>string</originalDocId>
          <task>int</task>
        </DocumentInData>
      </docs>
    </Post>
  </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>
    <PostResponse xmlns="http://swined/">
      <PostResult>SWINED_OK or SWINED_TEMPORARY_UNAVAILABLE or SWINED_EDRPOU_INVALID or SWINED_EMPTY_DATA or SWINED_CRYPT_ERROR_UNSIGN or SWINED_CRYPT_ERROR_DECRYPT or SWINED_CRYPT_ERROR_INTERNAL or SWINED_SIGN_ABSENT or SWINED_SIGN_EDRPOU_MISCOMPARE or SWINED_DOC_EDRPOU_INVALID or SWINED_DOC_ID_INVALID or SWINED_DOC_EMPTY or SWINED_DOC_ALREADY_REGISTERED or SWINED_ORIG_DOC_ID_INVALID or SWINED_ORIG_DOC_ABSENT or SWINED_DOC_TYPE_INVALID or SWINED_DOC_TOO_BIG or SWINED_TICKET_INVALID_SIGNS_SEQUENCE or SWINED_TICKET_INVALID_CONTENT or SWINED_TICKET_DOC_ABSENT or SWINED_CRYPTOLIB_ABSENT or SWINED_CERTIFICATE_INVALID or SWINED_CHUNK_NUMBER_INVALID or SWINED_CHUNK_NUMBER_DUPLICATED or SWINED_CHUNKS_MISMATCHED</PostResult>
      <errorDocIdx>int</errorDocIdx>
    </PostResponse>
  </soap12:Body>
</soap12:Envelope>