Hi All

Configuring the broker SSL context with

    <sslContext>
      <sslContext keyStore="mycert.jks" keyStorePassword="mypass" />
    </sslContext>

seems quite rigid and the password a security issue.
Is there a better way to do this? I couldn't really find a solution looking at 
the XSD.

For example, using a bean to offer the SSLContext

  <bean id="mySslContext" class="pack.age.MySslContext" />

and then referring to it

    <sslContext>
      <sslContext useContext="#mySslContext" />
    </sslContext>

Just an idea. I'm hoping there are other, already available, solutions.

- Martin

Reply via email to