Collection certificate store
A collection certificate store is a collection of non-root, certificate authority (CA) certificates and certificate revocation lists (CRLs), used to check the signature of a digitally signed SOAP message.
- For JAX-RPC applications, this collection is configured in...
- Request Consumer Service Configuration Details section of the binding file for servers
- Response Consumer Configuration section of the binding file for clients
Configure these two sections using one of the assembly tools provided by WAS.
- For JAX-WS applications, this collection is configured using the admin console in the Keys and certificates panel of the WS-Security policy set bindings.
A collection certificate store is one kind of certificate store. A certificate store is defined as javax.security.cert.CertStore in the Java CertPath API. The Java CertPath API defines the following types of certificate stores:
Collection certificate store A collection certificate store accepts the certificates and CRLs as Java collection objects. LDAP certificate store The LDAP certificate store accepts certificates and CRLs as LDAP entries. The CertPath API uses the certificate store and the trust anchor to validate the incoming X.509 certificate that is embedded in the SOAP message. The Web services security implementation in the WAS supports the collection certificate store. Each certificate and CRL is passed as an encoded file.
 
Related concepts
Certificate revocation list
Trust anchor
Assembly tools
WS-Security provides message integrity, confidentiality, and authentication