Historical Content Alert

This is a historical content for Windows NT 4.0 product and is presented for informative purposes only. All content in this directory is copyrighted and owned by Microsoft.

RetrievePending

The RetrievePending method attempts to retrieve a certificate from a request that had previously returned CR_DISP_INCOMPLETE or CR_DISP_UNDER_SUBMISSION.

[VB] Long RetrievePending(
  long RequestId, 
  BSTR strConfig  
);
 
[JAVA] int RetrievePending(
  int RequestId,              
  java.lang.String strConfig  
);
 
[C++] HRESULT RetrievePending(
  LONG RequestId,        // in
  BSTR const strConfig,  // in
  LONG * pDisposition    // out, return value
);
 

Parameters

[VB][JAVA][C++] RequestId
The ID of the request that had previously returned CR_DISP_INCOMPLETE or CR_DISP_UNDER_SUBMISSION.
[VB][JAVA][C++] strConfig
Points to a valid configuration string for the certificate server. See ICertConfig::GetConfig.
[C++] pDisposition
Points to the return value. See Return Values.

Return Values

Returns a value specifying the disposition of the request. The disposition can be specified by one of the following values.

Return Value Meaning
CR_DISP_INCOMPLETE Request did not complete
CR_DISP_ERROR Request failed
CR_DISP_DENIED Request denied
CR_DISP_ISSUED Certificate issued
CR_DISP_ISSUED_OUT_OF_BAND Certificate issued separately
CR_DISP_UNDER_SUBMISSION Request taken under submission


Share this article: