The SSL TransportThe SSL transport allows clients to connect to a remote ActiveMQ broker using SSL over a TCP socket. Configuration Syntaxssl://hostname:port?transportOptions Transport OptionsThe configuration options from TCP are relevant. Example URIssl://localhost:61616?trace=false SSLServerSocket optionsFrom version 5.4 any SSLServerSocket option may be set on a TransportConnection via ?transport.XXX, for example: ssl://localhost:61616?transport.enabledCipherSuites=SSL_RSA_WITH_RC4_128_SHA,SSL_DH_anon_WITH_3DES_EDE_CBC_SHA ssl://localhost:61616?transport.needClientAuth=true Other LinksYou can also turn on SSL debug informations this way by adding: -Djavax.net.debug=ssl this way you can see what goes wrong and why you get connections closed.
|