SWinED


Click here for a complete list of operations.

PostChunk

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

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/PostChunk"

<?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>
    <PostChunk xmlns="http://swined/">
      <senderEDRPOU>string</senderEDRPOU>
      <senderDept>int</senderDept>
      <docsType>Original or Response</docsType>
      <doc>
        <chunkNumber>int</chunkNumber>
        <final>boolean</final>
      </doc>
    </PostChunk>
  </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>
    <PostChunkResponse xmlns="http://swined/">
      <PostChunkResult>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</PostChunkResult>
      <lastChunkNum>int</lastChunkNum>
    </PostChunkResponse>
  </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>
    <PostChunk xmlns="http://swined/">
      <senderEDRPOU>string</senderEDRPOU>
      <senderDept>int</senderDept>
      <docsType>Original or Response</docsType>
      <doc>
        <chunkNumber>int</chunkNumber>
        <final>boolean</final>
      </doc>
    </PostChunk>
  </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>
    <PostChunkResponse xmlns="http://swined/">
      <PostChunkResult>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</PostChunkResult>
      <lastChunkNum>int</lastChunkNum>
    </PostChunkResponse>
  </soap12:Body>
</soap12:Envelope>