[TIBCO.EMS .NET client library 6.3 documentation]

Get the certificate store info object associated with this connection factory.

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public Object GetCertificateStore()
Public Function GetCertificateStore As Object
public:
Object^ GetCertificateStore()

Remarks

can be null or of type EMSSSLFileStoreInfo or EMSSSLSystemStoreInfo. NOTE: SSL Connection factory objects that are looked up in JNDI have a certificate store info already created. This allows a user to get access to the certificate store object and set properties not present in the JNDI object. e.g. ssl password.

Examples

 Copy Code
              EMSSSLFileStoreInfo info = (EMSSSLFileStoreInfo)cf.GetCertificateStore();
              String _password        = "password";
              info.SetSSLPassword(_password.ToCharArray());
            

See Also