Specifies certificate processing options for REST requests. The options are:
NONE: The server does not check for a certificate. The connection is established with or without a valid certificate.
OPTIONAL: The server requests a certificate. The connection is established with or without a certificate, but the process stops if a client provides an invalid or untrusted certificate, and the system returns the error code HTTP 400.
OPTIONAL_NO_CA: The server requests a certificate. The connection is established with any valid certificate even if CA is untrusted, but the process stops if a client provides an invalid certificate, and the system returns the error code HTTP 400.
REQUIRED: The server requests a certificate. The server rejects a connection if a client fails to provide a valid certificate, and the system returns the error code HTTP 400.
The default value is: OPTIONAL. |