martinsuchan commented on issue #11960:
URL: https://github.com/apache/ignite/issues/11960#issuecomment-3597891971

   We connect to Ignite using Thin client like this. The endpoint has a valid 
certificate issued for the "myhost1.intranet.domain.com" address
   ```
   var cfg = new IgniteClientConfiguration
   {
       Endpoints = ["myhost1.intranet.domain.com:10800"],
       EnablePartitionAwareness = true,
       EnableClusterDiscovery = true,
       SslStreamFactory = new SslStreamFactory
       {
           SslProtocols = SslProtocols.Tls12 |SslProtocols.Tls13,
           SkipServerCertificateValidation = false
       }
   };
   Ignition.StartClient(cfg);
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to