Hi All,
I am trying to connect to solace using the below details but have to use a truststore instead of a password using C#.
SessionProperties sessionProps = new SessionProperties();
sessionProps.Host = “********”;
sessionProps.VPNName = “";
sessionProps.UserName = "”;
sessionProps.SSLValidateCertificate = true;
sessionProps.SSLValidateCertificateDate = true;
sessionProps.SSLValidateCertificateHost = true;
Can anyone kindly help me with how I can use the trust store because all the attempts to connect give me the below error.
Operation Error: ReturnCode = SOLCLIENT_FAIL Error Info: (Subcode=UnresolvedHost, Error string=host names in the hostlist ‘’ could not be resolved from session ‘’ configuration property ‘SESSION_HOST’,
thank you