Hi all, My activeMQ is configured with:
<transportConnector name="https" uri="https://localhost:443" enableStatusMonitor="true"/> and i added the ssl connector to my jetty (the one embedded into activemq-all-5.3.2), like this: <bean id="sslConnector" class="org.mortbay.jetty.security.SslSocketConnector"> <property name="port" value="443"/> <property name="keystore" value="./conf/certs/broker.ks"/> <property name="password" value="q5qpTEBb"/> <property name="keyPassword" value="q5qpTEBb"/> </bean> At startup, it complains because the port 443 is already used by activemq for its https connector... that's right, but i have to activate Jetty as an SSL server, no ? I do not understand what is doing exactely the HTTPS declaration in the activemq.xml file... Do i need to declare the sslConnector for Jetty, and connect it, or is the https connector dclaration of activemq is enough ? thanks a lot! -- View this message in context: http://old.nabble.com/How-to-enable-HTTPS-when-SSL-is-working---tp28755706p28802425.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.