The application.yaml properties for the Solace Micro integration message processor in the User Guide don’t list the exact property names and hierarchy for SSL connections. In particular, I want to configure the ca cert for the server that the message processor is connecting to.
Some of the properties listed in the user guide seem to differ from past versions of the same property e.g. msg-vpn as opposed to msgVpn for solace spring-boot products.
This much is listed in the Solace User Guide:
(I guess for SSL, it should be tcps://localhost:55443)
Thanks for the quick response. I’d seen that source page already but the different property names made me suspicious. I’m wondering if the properties in a yaml file are named differently e.g. msg-vpn (in User Guide, which is working) vs msgVpn.
So in my application.yaml, should I write apiProperties or api-properties ? And should I use ssl_trust_store or ssl-trust-store ?
For the name of properties like msg-vpn vs msgVpn, The properties defined in SolaceJavaProperties.java , you could use spring-boot pattern (i.e. camelCase or kebab-case).
However if you notice the apiProperties it is a Map of key/value pair. List of properties names/key are defined here .
The key names can be in upper case or lower case. So you can either use SSL_TRUST_STORE or ssl_trust_store, but cannot use ssl-trust-store or sslTrustStore for the keys.
FYI, here is an example configuration under tests .