We are using Spring cloud stream solace binders. We are trying to configure SSL cert when connecting to solace queue and topic. Below is the configuration that we use in java and is working-
properties.setProperty("Solace_JMS_VPN", vpn);
properties.setProperty("Solace_JMS_Authentication_Scheme", "AUTHENTICATION_SCHEME_CLIENT_CERTIFICATE");
properties.setProperty("SOLACE_JMS_SSL_VALIDATE_CERTIFICATE","true");
properties.setProperty("Solace_JMS_SSL_TrustStore", <path>);
properties.setProperty("Solace_JMS_SSL_TrustStorePassword", <pwd>);
We need help in configuring these properties in the solace binder. Currently we have the below entry -
binders:
local_solace:
type: solace
environment:
solace:
java:
host: tcps://<host:port>
msgVpn: <vpn>
clientUsername: <username>