[TIBCO.EMS .NET client library 7.0 documentation]

Set the client identity as a string

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

Syntax

public void SetSSLClientIdentity(
	string clientIdentity
)
Public Sub SetSSLClientIdentity ( _
	clientIdentity As String _
)
public:
void SetSSLClientIdentity(
	String^ clientIdentity
)

Parameters

clientIdentity
Type: System..::.String
The X509 Certificate 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 the Client Identity as a string:
 Copy Code
                public void SetSSLClientIdentity(clientId); 
            

See Also