You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by bu...@apache.org on 2017/12/13 03:36:32 UTC

svn commit: r1022166 [3/8] - in /websites/production/activemq/content: ./ cache/ web-console.data/

Modified: websites/production/activemq/content/auto.html
==============================================================================
--- websites/production/activemq/content/auto.html (original)
+++ websites/production/activemq/content/auto.html Wed Dec 13 03:36:26 2017
@@ -35,6 +35,7 @@
           <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
@@ -81,22 +82,22 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><p>Starting with version 5.13.0, ActiveMQ supports wire format protocol detection. &#160; OpenWire, STOMP, AMQP, and MQTT can be automatically detected. &#160;This allows one transport to be shared for all 4 types of clients.</p><h3 id="AUTO-EnablingAUTOoverTCP">Enabling AUTO over TCP</h3><p>To configure ActiveMQ auto wire format detection over a TCP connection use the&#160;<code>auto</code>&#160;transport prefix. For example, add the following transport configuration in your XML file:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671"/&gt;</pre>
 </div></div><h3 id="AUTO-EnablingAUTOoverSSL">Enabling AUTO over SSL</h3><p>To configure ActiveMQ auto wire format detection over an SSL connection use the&#160;<code>auto+ssl</code>&#160;transport prefix. For example, add the following transport configuration in your XML file:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto+ssl" uri="auto+ssl://localhost:5671"/&gt;
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto+ssl" uri="auto+ssl://localhost:5671"/&gt;
 </pre>
 </div></div><ul><li>For more details on using SSL with ActiveMQ, see the following article (<a shape="rect" class="external-link" href="http://activemq.apache.org/how-do-i-use-ssl.html">How do I use SSL</a>).</li></ul><h3 id="AUTO-EnablingAUTOoverNIO">Enabling AUTO over NIO</h3><p>To configure ActiveMQ auto wire format detection over an NIO TCP connection use the&#160;<code>auto+nio</code>transport prefix. For example, add the following transport configuration in your XML file:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto+nio" uri="auto+nio://localhost:5671"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto+nio" uri="auto+nio://localhost:5671"/&gt;</pre>
 </div></div><h3 id="AUTO-EnablingAUTOoverNIOSSL">Enabling AUTO over NIO SSL</h3><p>To configure ActiveMQ auto wire format detection over an NIO SSL connection use the&#160;<code>auto+nio+ssl</code>&#160;transport prefix. For example, add the following transport configuration in your XML file:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto+nio+ssl" uri="auto+nio+ssl://localhost:5671"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto+nio+ssl" uri="auto+nio+ssl://localhost:5671"/&gt;</pre>
 </div></div><h3 id="AUTO-ConfiguringAUTOTransportOptions">Configuring AUTO Transport Options</h3><p>There are some configuration options that can be set.</p><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Parameter Name</p></th><th colspan="1" rowspan="1" class="confluenceTh">Default Value</th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>protocolDetectionTimeOut</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>30000</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>The time before a connection times out in milliseconds. This is similar to maxInactivityDuration. If a client makes a connection to but doesn't send data or enough data for the protocol to be detected then the thread will sit and wait for more data to come in over the socket. This will let the broker kill the connections if they do not complete t
 he protocol initialization after a certain period of time. The default is 30 seconds. Set a default to &lt;= 0 to disable this.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>maxConnectionThreadPoolSize</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>MAX_INT</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>This option allows the configuration of the maximum size of the thread pool that handles connection attempts. Lowering this number can help prevent the broker from running out of threads if there are many different clients attempting to connect at the same time. By default it is turned off by setting to MAX_INT</p></td></tr></tbody></table></div><p><br clear="none">An example that configures the transport with a maximum protocol detection time of 5 seconds:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?protocolDetectionTimeOut=5000"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?protocolDetectionTimeOut=5000"/&gt;</pre>
 </div></div><h3 id="AUTO-ConfiguringWireFormats">Configuring Wire Formats</h3><p>OpenWire is the default Wire Format that ActiveMQ uses.&#160; It provides a highly efficent binary format for high speed messaging.&#160; OpenWire options can be configured on a JMS client's connection URI string or on a Brokers transport bind URI.</p><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Parameter Prefix</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>wireFormat.</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Applies the option to all wire formats.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>wireFormat.default.</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Applies the option to the default format which is OpenWire</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p
 >wireFormat.stomp.</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>Applies the option to the STOMP wire format</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><span>wireFormat.amqp.</span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>Applies the option to the AMQP<span> wire format</span></span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>wireFormat.mqtt.</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>Applies the option to the MQTT<span> wire format</span></span></p></td></tr></tbody></table></div><p>&#160;</p><p>An example of a property that applies to all formats:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?wireFormat.maxFrameSize=1000"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?wireFormat.maxFrameSize=1000"/&gt;</pre>
 </div></div><p>&#160;</p><p>An example of a property only applied to OpenWire would be:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?wireFormat.default.maxFrameSize=1000"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?wireFormat.default.maxFrameSize=1000"/&gt;</pre>
 </div></div><h3 id="AUTO-ConfiguringEnabledWireProtocols">Configuring Enabled Wire Protocols</h3><p>By default all wire protocols are available. &#160;This can be configured to only enable certain formats by setting the property &#160;auto<code>.protocols.</code>&#160;</p><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Value</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>default</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Enables OpenWire</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>amqp</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Enables AMQP format</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>stomp</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Enables STOMP format</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd
 "><p>mqtt</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Enables MQTT format</p></td></tr></tbody></table></div><p>&#160;</p><p>An example showing only OpenWire and STOMP enabled:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?auto.protocols=default,stomp"/&gt;</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">     &lt;transportConnector name="auto" uri="auto://localhost:5671?auto.protocols=default,stomp"/&gt;</pre>
 </div></div></div>
         </td>
         <td valign="top">

Modified: websites/production/activemq/content/becoming-a-committer.html
==============================================================================
--- websites/production/activemq/content/becoming-a-committer.html (original)
+++ websites/production/activemq/content/becoming-a-committer.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/blazeds.html
==============================================================================
--- websites/production/activemq/content/blazeds.html (original)
+++ websites/production/activemq/content/blazeds.html Wed Dec 13 03:36:26 2017
@@ -35,6 +35,7 @@
           <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
@@ -87,7 +88,7 @@
 <p>Using the dynamicQueues feature of the <a shape="rect" href="jndi-support.html">JNDI Support</a> Ryan Gardner created thisworking BlazeDS messaging-config.xml file:</p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;service id="message-service" class="flex.messaging.services.MessageService"&gt;
 

Modified: websites/production/activemq/content/blob-messages.html
==============================================================================
--- websites/production/activemq/content/blob-messages.html (original)
+++ websites/production/activemq/content/blob-messages.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/broadcasting.html
==============================================================================
--- websites/production/activemq/content/broadcasting.html (original)
+++ websites/production/activemq/content/broadcasting.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/building-activemq-cpp.html
==============================================================================
--- websites/production/activemq/content/building-activemq-cpp.html (original)
+++ websites/production/activemq/content/building-activemq-cpp.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/building.html
==============================================================================
--- websites/production/activemq/content/building.html (original)
+++ websites/production/activemq/content/building.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/activemq/content/cached-ldap-authorization-module.html
==============================================================================
--- websites/production/activemq/content/cached-ldap-authorization-module.html (original)
+++ websites/production/activemq/content/cached-ldap-authorization-module.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/certificateunknown.html
==============================================================================
--- websites/production/activemq/content/certificateunknown.html (original)
+++ websites/production/activemq/content/certificateunknown.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/changes-in-40.html
==============================================================================
--- websites/production/activemq/content/changes-in-40.html (original)
+++ websites/production/activemq/content/changes-in-40.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/command-agent.html
==============================================================================
--- websites/production/activemq/content/command-agent.html (original)
+++ websites/production/activemq/content/command-agent.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/complex-single-broker-configuration-stomp-only.html
==============================================================================
--- websites/production/activemq/content/complex-single-broker-configuration-stomp-only.html (original)
+++ websites/production/activemq/content/complex-single-broker-configuration-stomp-only.html Wed Dec 13 03:36:26 2017
@@ -35,6 +35,7 @@
           <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
@@ -86,7 +87,7 @@
 
 <p>ActiveMQ is assumed to be installed in /usr/local/activemq/ in this example.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 &lt;!--
   ActiveMQ activemq.xml configuration file (/usr/local/activemq/conf/activemq.xml)
 
@@ -183,7 +184,7 @@
 </div></div>
 <p>Add this XML snippet to the web.xml for the /admin/ app, in order to enable HTTP Authentication to match the activemq.xml configuration above.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 &lt;security-constraint&gt;
     &lt;web-resource-collection&gt;
         &lt;web-resource-name&gt;Web Console&lt;/web-resource-name&gt;

Modified: websites/production/activemq/content/composite-destinations.html
==============================================================================
--- websites/production/activemq/content/composite-destinations.html (original)
+++ websites/production/activemq/content/composite-destinations.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/configure-version-5-brokers.html
==============================================================================
--- websites/production/activemq/content/configure-version-5-brokers.html (original)
+++ websites/production/activemq/content/configure-version-5-brokers.html Wed Dec 13 03:36:26 2017
@@ -35,6 +35,7 @@
           <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
@@ -81,7 +82,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h3 id="Configureversion5Brokers-Overview">Overview</h3><p>There is an updates XML syntax for configuring message brokers - <a shape="rect" class="external-link" href="http://activemq.apache.org/schema/core/activemq-core-5.0-SNAPSHOT.xsd">see here</a></p><p>So we decided that using XML would make this configuration much easier. we use <a shape="rect" class="external-link" href="http://xbean.org/" rel="nofollow">XBean</a> to perform the XML configuration.</p><p>For details of the XML see the <a shape="rect" href="xml-reference.html">Xml Reference</a></p><div class="confluence-information-macro confluence-information-macro-warning"><p class="title">Be careful with broker names and URIs</p><span class="aui-icon aui-icon-small aui-iconfont-error confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>Make sure you do not use any strange characters in the names of brokers as they are converted to URIs which <a shap
 e="rect" class="external-link" href="http://java.sun.com/j2se/1.4.2/docs/api/java/net/URI.html" rel="nofollow">do not allow things like underscores</a> in them etc.</p></div></div><h2 id="Configureversion5Brokers-Examples">Examples</h2><p>The default ActiveMQ configuration: <a shape="rect" class="external-link" href="http://svn.apache.org/repos/asf/activemq/trunk/assembly/src/release/conf/activemq.xml">current default config</a>.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">&lt;beans
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">&lt;beans
   xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

Modified: websites/production/activemq/content/configuring-activemq-cpp.html
==============================================================================
--- websites/production/activemq/content/configuring-activemq-cpp.html (original)
+++ websites/production/activemq/content/configuring-activemq-cpp.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/configuring-brokers.html
==============================================================================
--- websites/production/activemq/content/configuring-brokers.html (original)
+++ websites/production/activemq/content/configuring-brokers.html Wed Dec 13 03:36:26 2017
@@ -35,6 +35,7 @@
           <link href='http://activemq.apache.org/styles/highlighter/styles/shCore.css' rel='stylesheet' type='text/css' /> 
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
@@ -99,7 +100,7 @@
 <h3 id="ConfiguringBrokers-Example">Example</h3>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
 &lt;beans xmlns="http://activemq.org/config/1.0"&gt;
 
   &lt;broker useJmx="true"&gt;

Modified: websites/production/activemq/content/configuring-transports.html
==============================================================================
--- websites/production/activemq/content/configuring-transports.html (original)
+++ websites/production/activemq/content/configuring-transports.html Wed Dec 13 03:36:26 2017
@@ -37,6 +37,7 @@
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/configuring-version-5-transports.html
==============================================================================
--- websites/production/activemq/content/configuring-version-5-transports.html (original)
+++ websites/production/activemq/content/configuring-version-5-transports.html Wed Dec 13 03:36:26 2017
@@ -38,6 +38,7 @@
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/configuring-wire-formats.html
==============================================================================
--- websites/production/activemq/content/configuring-wire-formats.html (original)
+++ websites/production/activemq/content/configuring-wire-formats.html Wed Dec 13 03:36:26 2017
@@ -82,9 +82,9 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h3 id="ConfiguringWireFormats-TheOpenWireWireFormat">The OpenWire Wire Format</h3><p>OpenWire is the default wire format used by ActiveMQ.&#160; It provides a highly efficient binary format for high speed messaging.&#160; OpenWire options can be configured on a JMS client's connection URI or on a broker's transport bind URI.</p><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Option</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Default</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>cacheEnabled</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>true</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Should commonly repeated values be cached so that less marshaling occurs?</p></td></tr><tr><td colspan="1" rowspan="1" class="conf
 luenceTd"><p><code>cacheSize</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>1024</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>When&#160;<strong><code>cacheEnabled=true</code></strong> then this parameter is used to specify the number of values to be cached.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>maxInactivityDuration</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>30000</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>The maximum <a shape="rect" href="activemq-inactivitymonitor.html">inactivity</a> duration (before which the socket is considered dead) in milliseconds. On some platforms it can take a long time for a socket to die. Therefore allow the broker to kill connections when they have been inactive for the configured period of time. Used by some transports to enable a keep alive heart beat feature.</p><p>Inactivity monitoring is disabled when set to a 
 value <strong><code>&lt;= 0</code></strong>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>maxInactivityDurationInitalDelay</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>10000</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>The initial delay before starting <a shape="rect" href="activemq-inactivitymonitor.html">inactivity</a> checks.</p><p>Yes, the word&#160;<strong><code>'Inital'</code></strong> is supposed to be misspelled like that.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>maxFrameSize</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>MAX_LONG</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Maximum allowed frame size. Can help help prevent OOM DOS attacks.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>sizePrefixDisabled</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>false</code
 ></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Should the size of the packet be prefixed before each packet is marshaled?</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>stackTraceEnabled</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>true</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Should the stack trace of exception that occur on the broker be sent to the client?</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>tcpNoDelayEnabled</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><code>true</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Does not affect the wire format, but provides a hint to the peer that&#160;<strong><code>TCP_NODELAY</code></strong> should be enabled on the communications Socket.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><code>tightEncodingEnabled</code></p></td><td colspan="1" rowspan=
 "1" class="confluenceTd"><p><code>true</code></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Should wire size be optimized over CPU usage?</p></td></tr></tbody></table></div><div class="confluence-information-macro confluence-information-macro-warning"><p class="title">Use the Correct Prefix!</p><span class="aui-icon aui-icon-small aui-iconfont-error confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>Wire format options must have the prefix&#160;<strong><code>wireFormat.</code></strong> to take effect, e.g.,&#160;<strong><code>wireFormat.maxInactivityDuration=10000</code></strong>. Options missing this prefix will be ignored.</p></div></div><h4 id="ConfiguringWireFormats-ExampleConfigurations">Example Configurations</h4><p><strong>Java:</strong></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Confluence" style="font-size:12px;">ActiveMQConnectionFactory cf = new ActiveMQConnectionFactory("tcp://localhost:61616?wireFormat.cacheEnabled=false&amp;wireFormat.tightEncodingEnabled=false");</pre>
+<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">ActiveMQConnectionFactory cf = new ActiveMQConnectionFactory("tcp://localhost:61616?wireFormat.cacheEnabled=false&amp;wireFormat.tightEncodingEnabled=false");</pre>
 </div></div><p><strong><br clear="none"></strong></p><p>&#160;</p><p><strong>Spring:</strong></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: xml; gutter: false; theme: Confluence" style="font-size:12px;">&lt;bean class="org.apache.activemq.ActiveMQConnectionFactory"&gt;
+<pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">&lt;bean class="org.apache.activemq.ActiveMQConnectionFactory"&gt;
   &lt;property name="brokerURL" value="failover:(tcp://localhost:61616?jms.optimizeAcknowledge=false&amp;wireFormat.maxInactivityDuration=30000)"/&gt;
   &lt;!-- other options... --&gt;
 &lt;/bean&gt;</pre>

Modified: websites/production/activemq/content/connection-configuration-uri.html
==============================================================================
--- websites/production/activemq/content/connection-configuration-uri.html (original)
+++ websites/production/activemq/content/connection-configuration-uri.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/contributing.html
==============================================================================
--- websites/production/activemq/content/contributing.html (original)
+++ websites/production/activemq/content/contributing.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/could-not-find-packetreader-for-packet-type-unknown-packet-type.html
==============================================================================
--- websites/production/activemq/content/could-not-find-packetreader-for-packet-type-unknown-packet-type.html (original)
+++ websites/production/activemq/content/could-not-find-packetreader-for-packet-type-unknown-packet-type.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/delay-and-schedule-message-delivery.html
==============================================================================
--- websites/production/activemq/content/delay-and-schedule-message-delivery.html (original)
+++ websites/production/activemq/content/delay-and-schedule-message-delivery.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/delete-inactive-destinations.html
==============================================================================
--- websites/production/activemq/content/delete-inactive-destinations.html (original)
+++ websites/production/activemq/content/delete-inactive-destinations.html Wed Dec 13 03:36:26 2017
@@ -37,6 +37,7 @@
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushXml.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/developing-plugins.html
==============================================================================
--- websites/production/activemq/content/developing-plugins.html (original)
+++ websites/production/activemq/content/developing-plugins.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/discovery-transport-reference.html
==============================================================================
--- websites/production/activemq/content/discovery-transport-reference.html (original)
+++ websites/production/activemq/content/discovery-transport-reference.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/discovery.html
==============================================================================
--- websites/production/activemq/content/discovery.html (original)
+++ websites/production/activemq/content/discovery.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/download-archives.html
==============================================================================
--- websites/production/activemq/content/download-archives.html (original)
+++ websites/production/activemq/content/download-archives.html Wed Dec 13 03:36:26 2017
@@ -71,7 +71,7 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><h2 id="DownloadArchives-Downloadarchives">Download archives</h2><p>You can use the Apache Archives to download all the ActiveMQ releases.</p><ul class="alternate"><li><a shape="rect" class="external-link" href="http://archive.apache.org/dist/activemq/">http://archive.apache.org/dist/activemq/</a> - ActiveMQ releases</li><li><a shape="rect" class="external-link" href="http://archive.apache.org/dist/activemq/apache-activemq/">http://archive.apache.org/dist/activemq/apache-activemq/</a> - Even older ActiveMQ releases</li></ul><div class="confluence-information-macro confluence-information-macro-information"><p class="title">Downloading</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>The links below contains the release notes for all the ActiveMQ release. However if you want to download the release, you <strong>must</strong> use the download archiv
 es, which is the two links above.</p></div></div><p>All time Apache ActiveMQ releases notes:</p><p></p><ul class="childpages-macro"><li><a shape="rect" href="activemq-11-release.html">ActiveMQ 1.1 Release</a></li><li><a shape="rect" href="activemq-12-release.html">ActiveMQ 1.2 Release</a></li><li><a shape="rect" href="activemq-13-release.html">ActiveMQ 1.3 Release</a></li><li><a shape="rect" href="activemq-14-release.html">ActiveMQ 1.4 Release</a></li><li><a shape="rect" href="activemq-15-release.html">ActiveMQ 1.5 Release</a></li><li><a shape="rect" href="activemq-20-release.html">ActiveMQ 2.0 Release</a></li><li><a shape="rect" href="activemq-21-release.html">ActiveMQ 2.1 Release</a></li><li><a shape="rect" href="activemq-30-release.html">ActiveMQ 3.0 Release</a></li><li><a shape="rect" href="activemq-31-release.html">ActiveMQ 3.1 Release</a></li><li><a shape="rect" href="activemq-321-release.html">ActiveMQ 3.2.1 Release</a></li><li><a shape="rect" href="activemq-322-release.html"
 >ActiveMQ 3.2.2 Release</a></li><li><a shape="rect" href="activemq-32-release.html">ActiveMQ 3.2 Release</a></li><li><a shape="rect" href="activemq-401-release.html">ActiveMQ 4.0.1 Release</a></li><li><a shape="rect" href="activemq-402-release.html">ActiveMQ 4.0.2 Release</a></li><li><a shape="rect" href="activemq-40-m4-release.html">ActiveMQ 4.0 M4 Release</a></li><li><a shape="rect" href="activemq-40-rc2-release.html">ActiveMQ 4.0 RC2 Release</a></li><li><a shape="rect" href="activemq-40-release.html">ActiveMQ 4.0 Release</a></li><li><a shape="rect" href="activemq-410-release.html">ActiveMQ 4.1.0 Release</a></li><li><a shape="rect" href="activemq-411-release.html">ActiveMQ 4.1.1 Release</a></li><li><a shape="rect" href="activemq-412-release.html">ActiveMQ 4.1.2 Release</a></li><li><a shape="rect" href="activemq-500-release.html">ActiveMQ 5.0.0 Release</a></li><li><a shape="rect" href="activemq-510-release.html">ActiveMQ 5.1.0 Release</a></li><li><a shape="rect" href="activemq-5100
 -release.html">ActiveMQ 5.10.0 Release</a></li><li><a shape="rect" href="activemq-5101-release.html">ActiveMQ 5.10.1 Release</a></li><li><a shape="rect" href="activemq-5102-release.html">ActiveMQ 5.10.2 Release</a></li><li><a shape="rect" href="activemq-5110-release.html">ActiveMQ 5.11.0 Release</a></li><li><a shape="rect" href="activemq-5111-release.html">ActiveMQ 5.11.1 Release</a></li><li><a shape="rect" href="activemq-5112-release.html">ActiveMQ 5.11.2 Release</a></li><li><a shape="rect" href="activemq-5113-release.html">ActiveMQ 5.11.3 Release</a></li><li><a shape="rect" href="activemq-5120-release.html">ActiveMQ 5.12.0 Release</a></li><li><a shape="rect" href="activemq-5121-release.html">ActiveMQ 5.12.1 Release</a></li><li><a shape="rect" href="activemq-5122-release.html">ActiveMQ 5.12.2 Release</a></li><li><a shape="rect" href="activemq-5130-release.html">ActiveMQ 5.13.0 Release</a></li><li><a shape="rect" href="activemq-5131-release.html">ActiveMQ 5.13.1 Release</a></li><li>
 <a shape="rect" href="activemq-5132-release.html">ActiveMQ 5.13.2 Release</a></li><li><a shape="rect" href="activemq-5133-release.html">ActiveMQ 5.13.3 Release</a></li><li><a shape="rect" href="activemq-5134-release.html">ActiveMQ 5.13.4 Release</a></li><li><a shape="rect" href="activemq-5140-release.html">ActiveMQ 5.14.0 Release</a></li><li><a shape="rect" href="activemq-5141-release.html">ActiveMQ 5.14.1 Release</a></li><li><a shape="rect" href="activemq-5142-release.html">ActiveMQ 5.14.2 Release</a></li><li><a shape="rect" href="activemq-5143-release.html">ActiveMQ 5.14.3 Release</a></li><li><a shape="rect" href="activemq-5144-release.html">ActiveMQ 5.14.4 Release</a></li><li><a shape="rect" href="activemq-5145-release.html">ActiveMQ 5.14.5 Release</a></li><li><a shape="rect" href="activemq-5150-release.html">ActiveMQ 5.15.0 Release</a></li><li><a shape="rect" href="activemq-520-release.html">ActiveMQ 5.2.0 Release</a></li><li><a shape="rect" href="activemq-530-release.html">Acti
 veMQ 5.3.0 Release</a></li><li><a shape="rect" href="activemq-531-release.html">ActiveMQ 5.3.1 Release</a></li><li><a shape="rect" href="activemq-532-release.html">ActiveMQ 5.3.2 Release</a></li><li><a shape="rect" href="activemq-540-release.html">ActiveMQ 5.4.0 Release</a></li><li><a shape="rect" href="activemq-541-release.html">ActiveMQ 5.4.1 Release</a></li><li><a shape="rect" href="activemq-542-release.html">ActiveMQ 5.4.2 Release</a></li><li><a shape="rect" href="activemq-543-release.html">ActiveMQ 5.4.3 Release</a></li><li><a shape="rect" href="activemq-550-release.html">ActiveMQ 5.5.0 Release</a></li><li><a shape="rect" href="activemq-551-release.html">ActiveMQ 5.5.1 Release</a></li><li><a shape="rect" href="activemq-560-release.html">ActiveMQ 5.6.0 Release</a></li><li><a shape="rect" href="activemq-570-release.html">ActiveMQ 5.7.0 Release</a></li><li><a shape="rect" href="activemq-580-release.html">ActiveMQ 5.8.0 Release</a></li><li><a shape="rect" href="activemq-590-release
 .html">ActiveMQ 5.9.0 Release</a></li><li><a shape="rect" href="activemq-591-release.html">ActiveMQ 5.9.1 Release</a></li><li><a shape="rect" href="in-progress.html">In Progress</a></li></ul></div>
+<div class="wiki-content maincontent"><h2 id="DownloadArchives-Downloadarchives">Download archives</h2><p>You can use the Apache Archives to download all the ActiveMQ releases.</p><ul class="alternate"><li><a shape="rect" class="external-link" href="http://archive.apache.org/dist/activemq/">http://archive.apache.org/dist/activemq/</a> - ActiveMQ releases</li><li><a shape="rect" class="external-link" href="http://archive.apache.org/dist/activemq/apache-activemq/">http://archive.apache.org/dist/activemq/apache-activemq/</a> - Even older ActiveMQ releases</li></ul><div class="confluence-information-macro confluence-information-macro-information"><p class="title">Downloading</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>The links below contains the release notes for all the ActiveMQ release. However if you want to download the release, you <strong>must</strong> use the download archiv
 es, which is the two links above.</p></div></div><p>All time Apache ActiveMQ releases notes:</p><p></p><ul class="childpages-macro"><li><a shape="rect" href="activemq-11-release.html">ActiveMQ 1.1 Release</a></li><li><a shape="rect" href="activemq-12-release.html">ActiveMQ 1.2 Release</a></li><li><a shape="rect" href="activemq-13-release.html">ActiveMQ 1.3 Release</a></li><li><a shape="rect" href="activemq-14-release.html">ActiveMQ 1.4 Release</a></li><li><a shape="rect" href="activemq-15-release.html">ActiveMQ 1.5 Release</a></li><li><a shape="rect" href="activemq-20-release.html">ActiveMQ 2.0 Release</a></li><li><a shape="rect" href="activemq-21-release.html">ActiveMQ 2.1 Release</a></li><li><a shape="rect" href="activemq-30-release.html">ActiveMQ 3.0 Release</a></li><li><a shape="rect" href="activemq-31-release.html">ActiveMQ 3.1 Release</a></li><li><a shape="rect" href="activemq-321-release.html">ActiveMQ 3.2.1 Release</a></li><li><a shape="rect" href="activemq-322-release.html"
 >ActiveMQ 3.2.2 Release</a></li><li><a shape="rect" href="activemq-32-release.html">ActiveMQ 3.2 Release</a></li><li><a shape="rect" href="activemq-401-release.html">ActiveMQ 4.0.1 Release</a></li><li><a shape="rect" href="activemq-402-release.html">ActiveMQ 4.0.2 Release</a></li><li><a shape="rect" href="activemq-40-m4-release.html">ActiveMQ 4.0 M4 Release</a></li><li><a shape="rect" href="activemq-40-rc2-release.html">ActiveMQ 4.0 RC2 Release</a></li><li><a shape="rect" href="activemq-40-release.html">ActiveMQ 4.0 Release</a></li><li><a shape="rect" href="activemq-410-release.html">ActiveMQ 4.1.0 Release</a></li><li><a shape="rect" href="activemq-411-release.html">ActiveMQ 4.1.1 Release</a></li><li><a shape="rect" href="activemq-412-release.html">ActiveMQ 4.1.2 Release</a></li><li><a shape="rect" href="activemq-500-release.html">ActiveMQ 5.0.0 Release</a></li><li><a shape="rect" href="activemq-510-release.html">ActiveMQ 5.1.0 Release</a></li><li><a shape="rect" href="activemq-5100
 -release.html">ActiveMQ 5.10.0 Release</a></li><li><a shape="rect" href="activemq-5101-release.html">ActiveMQ 5.10.1 Release</a></li><li><a shape="rect" href="activemq-5102-release.html">ActiveMQ 5.10.2 Release</a></li><li><a shape="rect" href="activemq-5110-release.html">ActiveMQ 5.11.0 Release</a></li><li><a shape="rect" href="activemq-5111-release.html">ActiveMQ 5.11.1 Release</a></li><li><a shape="rect" href="activemq-5112-release.html">ActiveMQ 5.11.2 Release</a></li><li><a shape="rect" href="activemq-5113-release.html">ActiveMQ 5.11.3 Release</a></li><li><a shape="rect" href="activemq-5120-release.html">ActiveMQ 5.12.0 Release</a></li><li><a shape="rect" href="activemq-5121-release.html">ActiveMQ 5.12.1 Release</a></li><li><a shape="rect" href="activemq-5122-release.html">ActiveMQ 5.12.2 Release</a></li><li><a shape="rect" href="activemq-5130-release.html">ActiveMQ 5.13.0 Release</a></li><li><a shape="rect" href="activemq-5131-release.html">ActiveMQ 5.13.1 Release</a></li><li>
 <a shape="rect" href="activemq-5132-release.html">ActiveMQ 5.13.2 Release</a></li><li><a shape="rect" href="activemq-5133-release.html">ActiveMQ 5.13.3 Release</a></li><li><a shape="rect" href="activemq-5134-release.html">ActiveMQ 5.13.4 Release</a></li><li><a shape="rect" href="activemq-5140-release.html">ActiveMQ 5.14.0 Release</a></li><li><a shape="rect" href="activemq-5141-release.html">ActiveMQ 5.14.1 Release</a></li><li><a shape="rect" href="activemq-5142-release.html">ActiveMQ 5.14.2 Release</a></li><li><a shape="rect" href="activemq-5143-release.html">ActiveMQ 5.14.3 Release</a></li><li><a shape="rect" href="activemq-5144-release.html">ActiveMQ 5.14.4 Release</a></li><li><a shape="rect" href="activemq-5145-release.html">ActiveMQ 5.14.5 Release</a></li><li><a shape="rect" href="activemq-5150-release.html">ActiveMQ 5.15.0 Release</a></li><li><a shape="rect" href="activemq-5151-release.html">ActiveMQ 5.15.1 Release</a></li><li><a shape="rect" href="activemq-5152-release.html">A
 ctiveMQ 5.15.2 Release</a></li><li><a shape="rect" href="activemq-520-release.html">ActiveMQ 5.2.0 Release</a></li><li><a shape="rect" href="activemq-530-release.html">ActiveMQ 5.3.0 Release</a></li><li><a shape="rect" href="activemq-531-release.html">ActiveMQ 5.3.1 Release</a></li><li><a shape="rect" href="activemq-532-release.html">ActiveMQ 5.3.2 Release</a></li><li><a shape="rect" href="activemq-540-release.html">ActiveMQ 5.4.0 Release</a></li><li><a shape="rect" href="activemq-541-release.html">ActiveMQ 5.4.1 Release</a></li><li><a shape="rect" href="activemq-542-release.html">ActiveMQ 5.4.2 Release</a></li><li><a shape="rect" href="activemq-543-release.html">ActiveMQ 5.4.3 Release</a></li><li><a shape="rect" href="activemq-550-release.html">ActiveMQ 5.5.0 Release</a></li><li><a shape="rect" href="activemq-551-release.html">ActiveMQ 5.5.1 Release</a></li><li><a shape="rect" href="activemq-560-release.html">ActiveMQ 5.6.0 Release</a></li><li><a shape="rect" href="activemq-570-rel
 ease.html">ActiveMQ 5.7.0 Release</a></li><li><a shape="rect" href="activemq-580-release.html">ActiveMQ 5.8.0 Release</a></li><li><a shape="rect" href="activemq-590-release.html">ActiveMQ 5.9.0 Release</a></li><li><a shape="rect" href="activemq-591-release.html">ActiveMQ 5.9.1 Release</a></li><li><a shape="rect" href="in-progress.html">In Progress</a></li></ul></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/activemq/content/downloading-activemq-cpp.html
==============================================================================
--- websites/production/activemq/content/downloading-activemq-cpp.html (original)
+++ websites/production/activemq/content/downloading-activemq-cpp.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/encrypted-passwords.html
==============================================================================
--- websites/production/activemq/content/encrypted-passwords.html (original)
+++ websites/production/activemq/content/encrypted-passwords.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/enterprise-integration-patterns.html
==============================================================================
--- websites/production/activemq/content/enterprise-integration-patterns.html (original)
+++ websites/production/activemq/content/enterprise-integration-patterns.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/example-testing-scenario.html
==============================================================================
--- websites/production/activemq/content/example-testing-scenario.html (original)
+++ websites/production/activemq/content/example-testing-scenario.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/examples.html
==============================================================================
--- websites/production/activemq/content/examples.html (original)
+++ websites/production/activemq/content/examples.html Wed Dec 13 03:36:26 2017
@@ -37,6 +37,7 @@
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/fanout-transport-reference.html
==============================================================================
--- websites/production/activemq/content/fanout-transport-reference.html (original)
+++ websites/production/activemq/content/fanout-transport-reference.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/geronimo.html
==============================================================================
--- websites/production/activemq/content/geronimo.html (original)
+++ websites/production/activemq/content/geronimo.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/getting-started.html
==============================================================================
--- websites/production/activemq/content/getting-started.html (original)
+++ websites/production/activemq/content/getting-started.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 
@@ -81,11 +82,11 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 id="GettingStarted-Introduction">Introduction</h2><p>This document describes how to install and configure ActiveMQ 4.x/5.x for both Unix and Windows' platforms.</p><h2 id="GettingStarted-DocumentOrganization">Document Organization</h2><p class="confluence-link">The Getting Started Guide for ActiveMQ 4.x document contains the following sections:</p><p class="confluence-link"><style type="text/css">/*<![CDATA[*/
-div.rbtoc1502137388473 {padding: 0px;}
-div.rbtoc1502137388473 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1502137388473 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1513135701700 {padding: 0px;}
+div.rbtoc1513135701700 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1513135701700 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1502137388473">
+/*]]>*/</style></p><div class="toc-macro rbtoc1513135701700">
 <ul class="toc-indentation"><li><a shape="rect" href="#GettingStarted-Introduction">Introduction</a></li><li><a shape="rect" href="#GettingStarted-DocumentOrganization">Document Organization</a></li><li><a shape="rect" href="#GettingStarted-Pre-InstallationRequirements">Pre-Installation Requirements</a></li><li><a shape="rect" href="#GettingStarted-InstallationProcedureforWindows">Installation Procedure for Windows</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#GettingStarted-WindowsBinaryInstallation">Windows Binary Installation</a></li><li><a shape="rect" href="#GettingStarted-WindowsSourceInstallation">Windows Source Installation</a></li><li><a shape="rect" href="#GettingStarted-WindowsDeveloper'sRelease">Windows Developer's Release</a></li></ul>
 </li><li><a shape="rect" href="#GettingStarted-InstallationProcedureforUnix">Installation Procedure for Unix</a>

Modified: websites/production/activemq/content/group-membership.html
==============================================================================
--- websites/production/activemq/content/group-membership.html (original)
+++ websites/production/activemq/content/group-membership.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/hello-world.html
==============================================================================
--- websites/production/activemq/content/hello-world.html (original)
+++ websites/production/activemq/content/hello-world.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/hermes-jms.html
==============================================================================
--- websites/production/activemq/content/hermes-jms.html (original)
+++ websites/production/activemq/content/hermes-jms.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-can-i-contribute.html
==============================================================================
--- websites/production/activemq/content/how-can-i-contribute.html (original)
+++ websites/production/activemq/content/how-can-i-contribute.html Wed Dec 13 03:36:26 2017
@@ -37,6 +37,7 @@
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-can-i-enable-detailed-logging.html
==============================================================================
--- websites/production/activemq/content/how-can-i-enable-detailed-logging.html (original)
+++ websites/production/activemq/content/how-can-i-enable-detailed-logging.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-can-i-support-auto-reconnection.html
==============================================================================
--- websites/production/activemq/content/how-can-i-support-auto-reconnection.html (original)
+++ websites/production/activemq/content/how-can-i-support-auto-reconnection.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-can-i-support-priority-queues.html
==============================================================================
--- websites/production/activemq/content/how-can-i-support-priority-queues.html (original)
+++ websites/production/activemq/content/how-can-i-support-priority-queues.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-avoid-maven-downloading-latest-jars.html
==============================================================================
--- websites/production/activemq/content/how-do-i-avoid-maven-downloading-latest-jars.html (original)
+++ websites/production/activemq/content/how-do-i-avoid-maven-downloading-latest-jars.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-build-but-disable-the-unit-tests.html
==============================================================================
--- websites/production/activemq/content/how-do-i-build-but-disable-the-unit-tests.html (original)
+++ websites/production/activemq/content/how-do-i-build-but-disable-the-unit-tests.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-change-dispatch-policy.html
==============================================================================
--- websites/production/activemq/content/how-do-i-change-dispatch-policy.html (original)
+++ websites/production/activemq/content/how-do-i-change-dispatch-policy.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-change-the-logging.html
==============================================================================
--- websites/production/activemq/content/how-do-i-change-the-logging.html (original)
+++ websites/production/activemq/content/how-do-i-change-the-logging.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-change-the-message-store-directory-for-an-embedded-broker.html
==============================================================================
--- websites/production/activemq/content/how-do-i-change-the-message-store-directory-for-an-embedded-broker.html (original)
+++ websites/production/activemq/content/how-do-i-change-the-message-store-directory-for-an-embedded-broker.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-configure-10s-of-1000s-of-queues-in-a-single-broker.html
==============================================================================
--- websites/production/activemq/content/how-do-i-configure-10s-of-1000s-of-queues-in-a-single-broker.html (original)
+++ websites/production/activemq/content/how-do-i-configure-10s-of-1000s-of-queues-in-a-single-broker.html Wed Dec 13 03:36:26 2017
@@ -37,6 +37,7 @@
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushPlain.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-configure-automatic-reconnection.html
==============================================================================
--- websites/production/activemq/content/how-do-i-configure-automatic-reconnection.html (original)
+++ websites/production/activemq/content/how-do-i-configure-automatic-reconnection.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-connect-to-one-of-a-number-of-message-brokers.html
==============================================================================
--- websites/production/activemq/content/how-do-i-connect-to-one-of-a-number-of-message-brokers.html (original)
+++ websites/production/activemq/content/how-do-i-connect-to-one-of-a-number-of-message-brokers.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-consume-a-specific-message.html
==============================================================================
--- websites/production/activemq/content/how-do-i-consume-a-specific-message.html (original)
+++ websites/production/activemq/content/how-do-i-consume-a-specific-message.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-define-a-local-address-and-local-port-for-tcp-or-ssl.html
==============================================================================
--- websites/production/activemq/content/how-do-i-define-a-local-address-and-local-port-for-tcp-or-ssl.html (original)
+++ websites/production/activemq/content/how-do-i-define-a-local-address-and-local-port-for-tcp-or-ssl.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-embed-a-broker-inside-a-connection.html
==============================================================================
--- websites/production/activemq/content/how-do-i-embed-a-broker-inside-a-connection.html (original)
+++ websites/production/activemq/content/how-do-i-embed-a-broker-inside-a-connection.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-enable-asynchronous-sending.html
==============================================================================
--- websites/production/activemq/content/how-do-i-enable-asynchronous-sending.html (original)
+++ websites/production/activemq/content/how-do-i-enable-asynchronous-sending.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false; 

Modified: websites/production/activemq/content/how-do-i-enable-debug-logging.html
==============================================================================
--- websites/production/activemq/content/how-do-i-enable-debug-logging.html (original)
+++ websites/production/activemq/content/how-do-i-enable-debug-logging.html Wed Dec 13 03:36:26 2017
@@ -36,6 +36,7 @@
       <link href='http://activemq.apache.org/styles/highlighter/styles/shThemeEclipse.css' rel='stylesheet' type='text/css' /> 
       <script src='http://activemq.apache.org/styles/highlighter/scripts/shCore.js' type='text/javascript'></script> 
               <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushJava.js' type='text/javascript'></script> 
+              <script src='http://activemq.apache.org/styles/highlighter/scripts/shBrushBash.js' type='text/javascript'></script> 
          
       <script type="text/javascript"> 
         SyntaxHighlighter.defaults['toolbar'] = false;