Discuss this help topic in SecureBlackbox Forum

TElOCSPServer.ProcessRequest

TElOCSPServer     


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


Processes the request sent by client.

Declaration

[C#]
    int ProcessRequest(byte[] Request, ref byte[] Reply);

[VB.NET]
    Function ProcessRequest(ByVal Request As Byte(), ByRef Reply As Byte()) As Integer

[Pascal]
    function ProcessRequest(const Request : ByteArray; var Reply : ByteArray) : integer;

[C++]
    int32_t ProcessRequest(const std::vector<uint8_t> &Request, std::vector<uint8_t> &Reply);

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

[Java]
    int processRequest(byte[] Request, TElOCSPServerReply Reply);

Parameters

  • Request - request to be processed
  • Reply - reply to be sent

Return value

    0 on success;
    Error otherwise.

Possible errors values:

Description

    This method processes requests from client and fires OnCertificateCheck event for each certificate. The reply is put to Reply parameter and then it can be sent back to the client.

Discuss this help topic in SecureBlackbox Forum