IX509EnrollmentHelper::AddEnrollmentServer method (certenroll.h)
The AddEnrollmentServer method saves certificate enrollment server (CES) access credentials in the credential cache. This method is web enabled.
Syntax
HRESULT AddEnrollmentServer(
[in] BSTR strEnrollmentServerURI,
[in] X509EnrollmentAuthFlags authFlags,
[in] BSTR strCredential,
[in] BSTR strPassword
);
Parameters
[in] strEnrollmentServerURI
A BSTR that contains the certificate enrollment server URL.
[in] authFlags
An X509EnrollmentAuthFlags enumeration value that specifies the client authentication type. This can be one of the following values.
[in] strCredential
A BSTR that contains the credential.
[in] strPassword
A BSTR that contains a clear text password.
Return value
If the function succeeds, the function returns S_OK.
If the function fails, it returns an HRESULT value that indicates the error. Possible values include, but are not limited to, those in the following table. For a list of common error codes, see Common HRESULT Values.
Return code | Description |
---|---|
|
The strEnrollmentServerURI parameter cannot be NULL or empty.
If X509AuthAnonymous or X509AuthKerberos is specified in the authFlags parameter, the strCredential parameter must not be NULL. If X509AuthCertificate is specified in the authFlags parameter, the strCredential parameter must be NULL. If X509AuthCertificateis specified in the authFlags parameter, the strPassword parameter must be NULL, but strCredential parameter must not be. |
|
The strPassword, strCredential, or strEnrollmentServerURI parameters exceed 64,000 characters or contain embedded null characters. |
Remarks
The strCredential and strPassword arguments change depending on the value specified in the authFlags argument as shown in the following table.
flag parameter | strCredential parameter | strPassword parameter |
---|---|---|
X509AuthAnonymous | NULL | NULL |
X509AuthKerberos | NULL | NULL |
X509AuthUsername | Clear text user name recognized by the CEP server. | Clear text password associated with the user name. |
X509AuthCertificate | Contains a 20 byte SHA-1 hash (thumbprint) of the certificate. | NULL |
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 7 [desktop apps only] |
Minimum supported server | Windows Server 2008 R2 [desktop apps only] |
Target Platform | Windows |
Header | certenroll.h |