How to connect to SSL enabled Cassandra cluster using c# driver ?
I am using Cassandra hosted by different vendor and that is enabled with SSL
Tried below configuration but getting different errors
Note - In the zip bundle we have "cluster-ca-certificate.der" and "cluster-ca-certificate.pem" and "truststore.jks" only.
Kindly provide way to connect using above certificates.
Cluster.Builder()
//.AddContactPoints("")
//.WithPort(9042)
.WithCloudSecureConnectionBundle(@"filename.zip")
.WithLoadBalancingPolicy(new DCAwareRoundRobinPolicy(""))
.WithAuthProvider(new PlainTextAuthProvider("user", "password"))
.Build();