Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 36B59FBDD for ; Thu, 2 May 2013 22:22:03 +0000 (UTC) Received: (qmail 96731 invoked by uid 500); 2 May 2013 22:22:03 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 96708 invoked by uid 500); 2 May 2013 22:22:03 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 96676 invoked by uid 99); 2 May 2013 22:22:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 May 2013 22:22:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 May 2013 22:22:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 870622388847 for ; Thu, 2 May 2013 22:21:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r860647 - in /websites/production/activemq/content: cache/main.pageCache how-do-i-use-ssl.html Date: Thu, 02 May 2013 22:21:40 -0000 To: commits@activemq.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130502222140.870622388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: buildbot Date: Thu May 2 22:21:40 2013 New Revision: 860647 Log: Production update by buildbot for activemq Modified: websites/production/activemq/content/cache/main.pageCache websites/production/activemq/content/how-do-i-use-ssl.html Modified: websites/production/activemq/content/cache/main.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/activemq/content/how-do-i-use-ssl.html ============================================================================== --- websites/production/activemq/content/how-do-i-use-ssl.html (original) +++ websites/production/activemq/content/how-do-i-use-ssl.html Thu May 2 22:21:40 2013 @@ -115,22 +115,22 @@ export SSL_OPTS = -Djavax.net.ssl.keySto

The SslContext test case validates starting an SSL transport listener using the configuration specified in the broker Xbean. The SslContext element is added to the broker as follows:

-
+
 <beans
-  <amq:broker useJmx="false" persistent="false">
+  <amq:broker useJmx="false" persistent="false">
 
-    <amq:sslContext>
+    <amq:sslContext>
       <amq:sslContext
       		keyStore="server.keystore" keyStorePassword="password"
       		trustStore="client.keystore" trustStorePassword="password"/>
-    </amq:sslContext>
+    </amq:sslContext>
 
-    <amq:transportConnectors>
-      <amq:transportConnector uri="ssl://localhost:61616" />
-    </amq:transportConnectors>
+    <amq:transportConnectors>
+      <amq:transportConnector uri="ssl://localhost:61616" />
+    </amq:transportConnectors>
 
-  </amq:broker>
-</beans>
+  </amq:broker>
+</beans>