You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When securely connecting to the cluster, the following configuration is enough to establish a SSL connection:
var sslConfig = new SSLConfig();
sslConfig.SetEnabled(true);
ClientConfig clientConfig = new ClientConfig();
clientConfig.GetNetworkConfig().AddAddress("127.0.0.1");
clientConfig.GetNetworkConfig().SetSSLConfig(sslConfig);
var client = HazelcastClient.NewHazelcastClient(clientConfig);
However, you need to provide a valid certificate within a keystore - setting sslConfig.setEnabled to true wouldn't be sufficient enough.