Disabling ssl v3 in activemq admin console -


how disable ssl v3 in activemq admin console (port 8161)? did not found document on line.

in jetty.xml file can see below lines:

<bean id="secureconnector" class="org.eclipse.jetty.server.ssl.sslselectchannelconnector">     <property name="port" value="8161" />     <property name="keystore" value="file:${activemq.conf}/broker.ks" />     <property name="password" value="password" /> </bean>  

activemq uses basic spring wired jetty server admin web-gui. use methods available in jetty documentation - or @ so.

sslselectchannelconnector takes sslcontextfactory constructor arg. factory has excludeprotocols property can feed "sslv3".

wire in spring should straight forward.


Comments