Discuss this help topic in SecureBlackbox Forum

TElOCSPClient.ProcessReply

TElOCSPClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Processes received raw data reply.

Declaration

[C#]
    int ProcessReply(byte[] Reply, ref TElOCSPServerError ServerResult);

[VB.NET]
    Function ProcessReply(ByVal Reply As Byte(), ByRef ServerResult As TElOCSPServerError) As Integer

[Pascal]
    function ProcessReply(const Reply : ByteArray; var ServerResult : TElOCSPServerError) : integer;

[C++]
    int32_t ProcessReply(const std::vector<uint8_t> &Reply, TElOCSPServerError &ServerResult);

[PHP]
    integer ProcessReply(array of byte|string|NULL $Reply, integer &$ServerResult)

[Java]
    int processReply(byte[] Reply, TElOCSPServerErrorParam ServerResult);

Parameters

  • Reply - raw data reply
  • ServerResult - result of server processing the request

Server error values:

Return value

    0 on success;
    Error otherwise.

Possible errors values:

Description

    This method processes the raw data from the server, sets status, time, etc. These properties are set for each certificate from the CertStorage property.

See also:     CreateRequest     ReplyProducedAt    

Discuss this help topic in SecureBlackbox Forum