[TIBCO.EMS .NET client library 5.1 documentation]

Set the client identity as a X509 Certificate.

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

Syntax

public void SetSSLClientIdentity(
	X509Certificate cert
)
Public Sub SetSSLClientIdentity ( _
	cert As X509Certificate _
)
public:
void SetSSLClientIdentity(
	X509Certificate^ cert
)

Parameters

cert
Type: System.Security.Cryptography.X509Certificates..::.X509Certificate
A pkcs12 or .pfx file used to identify the client.

Remarks

Sets Client Identity (The client's digital certificate), the only file type that is supported here is a pkcs12 or .pfx file. NOTE: If other file format are specifed then a configuration exception will be thrown during the SSL handshake.

Examples

To set Client Identity as a X509 Certificate, use:
 Copy Code
                void SetSSLClientIdentity(X509Certificate); 
            

See Also