You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2013/07/12 14:46:31 UTC

svn commit: r869232 [44/44] - in /websites/production/activemq/content: ./ cache/ cms/ nms/ styles/highlighter/ styles/highlighter/scripts/ styles/highlighter/styles/ visualisation.thumbs/ web-console.thumbs/

Modified: websites/production/activemq/content/xml-configuration.html
==============================================================================
--- websites/production/activemq/content/xml-configuration.html (original)
+++ websites/production/activemq/content/xml-configuration.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,17 @@
     </style>
     <![endif]-->
 
+          <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"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Xml Configuration
     </title>
@@ -50,8 +61,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -86,24 +97,25 @@
 <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" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-xml">&lt;beans
-  xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span>
-  <span class="code-keyword">xmlns:amq</span>=<span class="code-quote">"http://activemq.apache.org/schema/core"</span>
-  <span class="code-keyword">xmlns:xsi</span>=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span>
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;beans
+  xmlns="http://www.springframework.org/schema/beans"
+  xmlns:amq="http://activemq.apache.org/schema/core"
+  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
   http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd"&gt;
 
-    <span class="code-tag"><span class="code-comment">&lt;!-- Allows us to use system properties as variables in this configuration file --&gt;</span></span>
-    <span class="code-tag">&lt;bean class=<span class="code-quote">"org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"</span>&gt;</span>
-        <span class="code-tag">&lt;property name=<span class="code-quote">"locations"</span>&gt;</span>
-            <span class="code-tag">&lt;value&gt;</span>file:${activemq.conf}/credentials.properties<span class="code-tag">&lt;/value&gt;</span>
-        <span class="code-tag">&lt;/property&gt;</span>
-    <span class="code-tag">&lt;/bean&gt;</span>
+    &lt;!-- Allows us to use system properties as variables in this configuration file --&gt;
+    &lt;bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"&gt;
+        &lt;property name="locations"&gt;
+            &lt;value&gt;file:${activemq.conf}/credentials.properties&lt;/value&gt;
+        &lt;/property&gt;
+    &lt;/bean&gt;
 
     &lt;!--
-        The <span class="code-tag">&lt;broker&gt;</span> element is used to configure the ActiveMQ broker.
+        The &lt;broker&gt; element is used to configure the ActiveMQ broker.
     --&gt;
-    <span class="code-tag">&lt;broker xmlns=<span class="code-quote">"http://activemq.apache.org/schema/core"</span> brokerName=<span class="code-quote">"localhost"</span> dataDirectory=<span class="code-quote">"${activemq.data}"</span>&gt;</span>
+    &lt;broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}"&gt;
 
         &lt;!--
             For better performances use VM cursor and small memory limit.
@@ -111,15 +123,15 @@
 
             http://activemq.apache.org/message-cursors.html
 
-            Also, if your producer is <span class="code-quote">"hanging"</span>, it's probably due to producer flow control.
+            Also, if your producer is "hanging", it's probably due to producer flow control.
             For more information, see:
             http://activemq.apache.org/producer-flow-control.html
         --&gt;
 
-        <span class="code-tag">&lt;destinationPolicy&gt;</span>
-            <span class="code-tag">&lt;policyMap&gt;</span>
-              <span class="code-tag">&lt;policyEntries&gt;</span>
-                <span class="code-tag">&lt;policyEntry topic=<span class="code-quote">"&gt;</span>"</span> producerFlowControl=<span class="code-quote">"true"</span>&gt;
+        &lt;destinationPolicy&gt;
+            &lt;policyMap&gt;
+              &lt;policyEntries&gt;
+                &lt;policyEntry topic="&gt;" producerFlowControl="true"&gt;
                     &lt;!-- The constantPendingMessageLimitStrategy is used to prevent
                          slow topic consumers to block producers and affect other consumers
                          by limiting the number of messages that are retained
@@ -128,24 +140,24 @@
                          http://activemq.apache.org/slow-consumer-handling.html
 
                     --&gt;
-                  <span class="code-tag">&lt;pendingMessageLimitStrategy&gt;</span>
-                    <span class="code-tag">&lt;constantPendingMessageLimitStrategy limit=<span class="code-quote">"1000"</span>/&gt;</span>
-                  <span class="code-tag">&lt;/pendingMessageLimitStrategy&gt;</span>
-                <span class="code-tag">&lt;/policyEntry&gt;</span>
-                <span class="code-tag">&lt;policyEntry queue=<span class="code-quote">"&gt;</span>"</span> producerFlowControl=<span class="code-quote">"true"</span> memoryLimit=<span class="code-quote">"1mb"</span>&gt;
+                  &lt;pendingMessageLimitStrategy&gt;
+                    &lt;constantPendingMessageLimitStrategy limit="1000"/&gt;
+                  &lt;/pendingMessageLimitStrategy&gt;
+                &lt;/policyEntry&gt;
+                &lt;policyEntry queue="&gt;" producerFlowControl="true" memoryLimit="1mb"&gt;
                   &lt;!-- Use VM cursor for better latency
                        For more information, see:
 
                        http://activemq.apache.org/message-cursors.html
 
-                  <span class="code-tag">&lt;pendingQueuePolicy&gt;</span>
-                    <span class="code-tag">&lt;vmQueueCursor/&gt;</span>
-                  <span class="code-tag">&lt;/pendingQueuePolicy&gt;</span>
+                  &lt;pendingQueuePolicy&gt;
+                    &lt;vmQueueCursor/&gt;
+                  &lt;/pendingQueuePolicy&gt;
                   --&gt;
-                <span class="code-tag">&lt;/policyEntry&gt;</span>
-              <span class="code-tag">&lt;/policyEntries&gt;</span>
-            <span class="code-tag">&lt;/policyMap&gt;</span>
-        <span class="code-tag">&lt;/destinationPolicy&gt;</span>
+                &lt;/policyEntry&gt;
+              &lt;/policyEntries&gt;
+            &lt;/policyMap&gt;
+        &lt;/destinationPolicy&gt;
 
 
         &lt;!--
@@ -155,9 +167,9 @@
 
             http://activemq.apache.org/jmx.html
         --&gt;
-        <span class="code-tag">&lt;managementContext&gt;</span>
-            <span class="code-tag">&lt;managementContext createConnector=<span class="code-quote">"false"</span>/&gt;</span>
-        <span class="code-tag">&lt;/managementContext&gt;</span>
+        &lt;managementContext&gt;
+            &lt;managementContext createConnector="false"/&gt;
+        &lt;/managementContext&gt;
 
         &lt;!--
             Configure message persistence for the broker. The default persistence
@@ -166,9 +178,9 @@
 
             http://activemq.apache.org/persistence.html
         --&gt;
-        <span class="code-tag">&lt;persistenceAdapter&gt;</span>
-            <span class="code-tag">&lt;kahaDB directory=<span class="code-quote">"${activemq.data}/kahadb"</span>/&gt;</span>
-        <span class="code-tag">&lt;/persistenceAdapter&gt;</span>
+        &lt;persistenceAdapter&gt;
+            &lt;kahaDB directory="${activemq.data}/kahadb"/&gt;
+        &lt;/persistenceAdapter&gt;
 
 
           &lt;!--
@@ -177,33 +189,33 @@
             http://activemq.apache.org/producer-flow-control.html
             If using ActiveMQ embedded - the following limits could safely be used:
 
-        <span class="code-tag">&lt;systemUsage&gt;</span>
-            <span class="code-tag">&lt;systemUsage&gt;</span>
-                <span class="code-tag">&lt;memoryUsage&gt;</span>
-                    <span class="code-tag">&lt;memoryUsage limit=<span class="code-quote">"20 mb"</span>/&gt;</span>
-                <span class="code-tag">&lt;/memoryUsage&gt;</span>
-                <span class="code-tag">&lt;storeUsage&gt;</span>
-                    <span class="code-tag">&lt;storeUsage limit=<span class="code-quote">"1 gb"</span>/&gt;</span>
-                <span class="code-tag">&lt;/storeUsage&gt;</span>
-                <span class="code-tag">&lt;tempUsage&gt;</span>
-                    <span class="code-tag">&lt;tempUsage limit=<span class="code-quote">"100 mb"</span>/&gt;</span>
-                <span class="code-tag">&lt;/tempUsage&gt;</span>
-            <span class="code-tag">&lt;/systemUsage&gt;</span>
-        <span class="code-tag">&lt;/systemUsage&gt;</span>
+        &lt;systemUsage&gt;
+            &lt;systemUsage&gt;
+                &lt;memoryUsage&gt;
+                    &lt;memoryUsage limit="20 mb"/&gt;
+                &lt;/memoryUsage&gt;
+                &lt;storeUsage&gt;
+                    &lt;storeUsage limit="1 gb"/&gt;
+                &lt;/storeUsage&gt;
+                &lt;tempUsage&gt;
+                    &lt;tempUsage limit="100 mb"/&gt;
+                &lt;/tempUsage&gt;
+            &lt;/systemUsage&gt;
+        &lt;/systemUsage&gt;
         --&gt;
-          <span class="code-tag">&lt;systemUsage&gt;</span>
-            <span class="code-tag">&lt;systemUsage&gt;</span>
-                <span class="code-tag">&lt;memoryUsage&gt;</span>
-                    <span class="code-tag">&lt;memoryUsage limit=<span class="code-quote">"64 mb"</span>/&gt;</span>
-                <span class="code-tag">&lt;/memoryUsage&gt;</span>
-                <span class="code-tag">&lt;storeUsage&gt;</span>
-                    <span class="code-tag">&lt;storeUsage limit=<span class="code-quote">"100 gb"</span>/&gt;</span>
-                <span class="code-tag">&lt;/storeUsage&gt;</span>
-                <span class="code-tag">&lt;tempUsage&gt;</span>
-                    <span class="code-tag">&lt;tempUsage limit=<span class="code-quote">"50 gb"</span>/&gt;</span>
-                <span class="code-tag">&lt;/tempUsage&gt;</span>
-            <span class="code-tag">&lt;/systemUsage&gt;</span>
-        <span class="code-tag">&lt;/systemUsage&gt;</span>
+          &lt;systemUsage&gt;
+            &lt;systemUsage&gt;
+                &lt;memoryUsage&gt;
+                    &lt;memoryUsage limit="64 mb"/&gt;
+                &lt;/memoryUsage&gt;
+                &lt;storeUsage&gt;
+                    &lt;storeUsage limit="100 gb"/&gt;
+                &lt;/storeUsage&gt;
+                &lt;tempUsage&gt;
+                    &lt;tempUsage limit="50 gb"/&gt;
+                &lt;/tempUsage&gt;
+            &lt;/systemUsage&gt;
+        &lt;/systemUsage&gt;
 
         &lt;!--
             The transport connectors expose ActiveMQ over a given protocol to
@@ -211,28 +223,28 @@
 
             http://activemq.apache.org/configuring-transports.html
         --&gt;
-        <span class="code-tag">&lt;transportConnectors&gt;</span>
-            <span class="code-tag"><span class="code-comment">&lt;!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB --&gt;</span></span>
-            <span class="code-tag">&lt;transportConnector name=<span class="code-quote">"openwire"</span> uri=<span class="code-quote">"tcp://0.0.0.0:61616?maximumConnections=1000&amp;amp;wireformat.maxFrameSize=104857600"</span>/&gt;</span>
-            <span class="code-tag">&lt;transportConnector name=<span class="code-quote">"amqp"</span> uri=<span class="code-quote">"amqp://0.0.0.0:5672?maximumConnections=1000&amp;amp;wireformat.maxFrameSize=104857600"</span>/&gt;</span>
-        <span class="code-tag">&lt;/transportConnectors&gt;</span>
-
-        <span class="code-tag"><span class="code-comment">&lt;!-- destroy the spring context on shutdown to stop jetty --&gt;</span></span>
-        <span class="code-tag">&lt;shutdownHooks&gt;</span>
-            <span class="code-tag">&lt;bean xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span> class=<span class="code-quote">"org.apache.activemq.hooks.SpringContextHook"</span> /&gt;</span>
-        <span class="code-tag">&lt;/shutdownHooks&gt;</span>
+        &lt;transportConnectors&gt;
+            &lt;!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB --&gt;
+            &lt;transportConnector name="openwire" uri="tcp://0.0.0.0:61616?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/&gt;
+            &lt;transportConnector name="amqp" uri="amqp://0.0.0.0:5672?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600"/&gt;
+        &lt;/transportConnectors&gt;
+
+        &lt;!-- destroy the spring context on shutdown to stop jetty --&gt;
+        &lt;shutdownHooks&gt;
+            &lt;bean xmlns="http://www.springframework.org/schema/beans" class="org.apache.activemq.hooks.SpringContextHook" /&gt;
+        &lt;/shutdownHooks&gt;
 
-    <span class="code-tag">&lt;/broker&gt;</span>
+    &lt;/broker&gt;
 
     &lt;!--
         Enable web consoles, REST and Ajax APIs and demos
 
         Take a look at ${ACTIVEMQ_HOME}/conf/jetty.xml for more details
     --&gt;
-    <span class="code-tag">&lt;import resource=<span class="code-quote">"jetty.xml"</span>/&gt;</span>
+    &lt;import resource="jetty.xml"/&gt;
 
-<span class="code-tag">&lt;/beans&gt;</span>
-</pre>
+&lt;/beans&gt;
+]]></script>
 </div></div>
 <p>From a binary distribution, from version 1.1 onwards there is an <em>activemq</em> script allowing you to run a Message Broker as a stand alone process from the command line easily providing the $ACTIVEMQ_HOME/bin directory is on your PATH.</p>
 
@@ -240,40 +252,40 @@
 
 <p>if myConfig.xml is in the classpath</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 activemq  xbean:myConfig.xml
-</pre>
+]]></script>
 </div></div>
 <p>or to use the file path system</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 activemq  xbean:file:../conf/myConfig.xml
-</pre>
+]]></script>
 </div></div>
 <p><b>AMQ 3.x</b></p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 activemq myConfig.xml
-</pre>
+]]></script>
 </div></div>
 <p>Or to use the default config file its just</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 activemq
-</pre>
+]]></script>
 </div></div>
 <p>If you have a source distribution you can run a broker using Maven specifying one of these configuration files as follows<br clear="none">
 under the assembly module run :</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 maven server -Dconfig=xbean:file:src/release/conf/activemq.xml
-</pre>
+]]></script>
 </div></div>
 <p>If your <a shape="rect" href="initial-configuration.html" title="Initial Configuration">classpath is set up correctly</a> you can achieve the same thing from the command line</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 java org.apache.activemq.broker.Main  xbean:file:src/release/conf/activemq.xml
-</pre>
+]]></script>
 </div></div>
 
 <h2><a shape="rect" name="XmlConfiguration-Configuringembeddedbrokers"></a>Configuring embedded brokers</h2>
@@ -309,8 +321,8 @@ Or of you want to explicitly configure t
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/xml-reference.html
==============================================================================
--- websites/production/activemq/content/xml-reference.html (original)
+++ websites/production/activemq/content/xml-reference.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <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 type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- Xml Reference
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -85,35 +95,35 @@
 
 <h2><a shape="rect" name="XmlReference-UsingtheXSDsinconfigurationfiles"></a>Using the XSDs in configuration files</h2>
 
-<p>If you are using XBean to parse the XML configurations, the XML validation is optional so you do not need to specify the XML Schema Locations. However if you are using <span class="error">[Spring]</span>'s 2.0 XML handling to parse the XML then you need to refer to the XSD locations in your XML document because Spring uses schema namespace or schema location to resolve namespace handlers. Without correct namespace definition you will get messages like below:</p>
+<p>If you are using XBean to parse the XML configurations, the XML validation is optional so you do not need to specify the XML Schema Locations. However if you are using <a shape="rect" class="createlink" href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=ACTIVEMQ&amp;title=Spring&amp;linkCreation=true&amp;fromPageId=36211">Spring</a>'s 2.0 XML handling to parse the XML then you need to refer to the XSD locations in your XML document because Spring uses schema namespace or schema location to resolve namespace handlers. Without correct namespace definition you will get messages like below:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">Unable to locate NamespaceHandler <span class="code-keyword">for</span> namespace [http:<span class="code-comment">//activemq.org/config/1.0]</span></pre>
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[Unable to locate NamespaceHandler for namespace [http://activemq.org/config/1.0]]]></script>
 </div></div>
 
 <p>You can refer to a specific version of the XSD in your XML as follows</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-xml">
-&lt;beans xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span>
-    <span class="code-keyword">xmlns:amq</span>=<span class="code-quote">"http://activemq.org/config/1.0"</span>
-    <span class="code-keyword">xmlns:xsi</span>=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span>
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;beans xmlns="http://www.springframework.org/schema/beans"
+    xmlns:amq="http://activemq.org/config/1.0"
+    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-2.0.xsd
         http://activemq.org/config/1.0 http://activemq.apache.org/schema/core/activemq-core-4.1.2.xsd"&gt;
-</pre>
+]]></script>
 </div></div>
 
 <p>or if you prefer you can use a generic XSD without the version number</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-xml">
-&lt;beans xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span>
-    <span class="code-keyword">xmlns:amq</span>=<span class="code-quote">"http://activemq.org/config/1.0"</span>
-    <span class="code-keyword">xmlns:xsi</span>=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span>
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;beans xmlns="http://www.springframework.org/schema/beans"
+    xmlns:amq="http://activemq.org/config/1.0"
+    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-2.0.xsd
         http://activemq.org/config/1.0 http://activemq.apache.org/schema/activemq-core.xsd"&gt;
-</pre>
+]]></script>
 </div></div>
 <p>Your IDE won't be able to fetch this XSD, you'll have to manually associate a specific release; however it does mean that you won't have to upgrade your XML config file with each ActiveMQ release; as it will resolve this XSD using the bundled XSD inside the activemq-core.jar.</p>
 
@@ -122,33 +132,33 @@
 <p>If you use ActiveMQ 5.0 or earlier you XML namespace definition should point to <tt><a shape="rect" class="external-link" href="http://activemq.org/config/1.0" rel="nofollow">http://activemq.org/config/1.0</a></tt>. If you use ActiveMQ 5.1 or later the namespace should point to <tt><a shape="rect" class="external-link" href="http://activemq.apache.org/schema/core">http://activemq.apache.org/schema/core</a></tt>.</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>ActiveMQ 5.2 example</b></div><div class="codeContent panelContent">
-<pre class="code-xml">
-&lt;beans xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span>
-    <span class="code-keyword">xmlns:amq</span>=<span class="code-quote">"http://activemq.apache.org/schema/core"</span>
-    <span class="code-keyword">xmlns:xsi</span>=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span>
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;beans xmlns="http://www.springframework.org/schema/beans"
+    xmlns:amq="http://activemq.apache.org/schema/core"
+    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
         http://activemq.apache.org/schema/core
         http://activemq.apache.org/schema/core/activemq-core-5.2.0.xsd
     "&gt;
-<span class="code-tag">&lt;/beans&gt;</span>
-</pre>
+&lt;/beans&gt;
+]]></script>
 </div></div>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>ActiveMQ 5.0 example</b></div><div class="codeContent panelContent">
-<pre class="code-xml">
-&lt;beans xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span>
-    <span class="code-keyword">xmlns:amq</span>=<span class="code-quote">"http://activemq.org/config/1.0"</span>
-    <span class="code-keyword">xmlns:xsi</span>=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span>
+<script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;beans xmlns="http://www.springframework.org/schema/beans"
+    xmlns:amq="http://activemq.org/config/1.0"
+    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
         http://activemq.org/config/1.0
         http://activemq.apache.org/schema/core/activemq-core-5.0.0.xsd
     "&gt;
-<span class="code-tag">&lt;/beans&gt;</span>
-</pre>
+&lt;/beans&gt;
+]]></script>
 </div></div>
 <p>Both examples above are almost the same. Only one difference is xml namespace. You can find more information about the namespace change on <a shape="rect" class="external-link" href="http://old.nabble.com/ActiveMQ-namespace-change-td16769650.html" rel="nofollow">activemq-dev topic: ActiveMQ namespace change</a>.</p>
 
@@ -160,9 +170,8 @@
 
 <p>XMLSchema:sequence is replaced with an XMLSchema:all</p>
 
-<p>Note: from version 5.4.2, you can disable validation from the command line by appending a query parameter to the xbean url. This will allow you to reuse your existing xml configuration 'as is' if needed. </p>
-<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">bin/activemq console xbean:conf/activemq.xml?validate=<span class="code-keyword">false</span></pre>
+<p>Note: from version 5.4.2, you can disable validation from the command line by appending a query parameter to the xbean url. This will allow you to reuse your existing xml configuration 'as is' if needed. </p><div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[bin/activemq console xbean:conf/activemq.xml?validate=false]]></script>
 </div></div>
 
 <p>Beginning in ActiveMQ 5.4, the XML elements inside the <tt>&lt;broker&gt;</tt> element must be ordered alphabetically. If you look at the XSD, this has always been the case with ActiveMQ. The difference in 5.4 is that the XML configuration is actually being validated against the XML schema.</p>
@@ -170,29 +179,29 @@
 <p>For example, the following XML configuration did not present a problem in ActiveMQ 5.3.x: </p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java"> 
-&lt;?xml version=<span class="code-quote">"1.0"</span>?&gt;
-&lt;beans xmlns=<span class="code-quote">"http:<span class="code-comment">//www.springframework.org/schema/beans"</span> xmlns:xsi=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span> 
-</span>xsi:schemaLocation="http:<span class="code-comment">//www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd   
-</span>http:<span class="code-comment">//activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd      
-</span>http:<span class="code-comment">//camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"&gt;
-</span>  
-  &lt;broker xmlns=<span class="code-quote">"http:<span class="code-comment">//activemq.apache.org/schema/core"</span> brokerName=<span class="code-quote">"brokerB1"</span> destroyApplicationContextOnStop=<span class="code-quote">"<span class="code-keyword">true</span>"</span>&gt;
-</span>    
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[ 
+&lt;?xml version="1.0"?&gt;
+&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-2.0.xsd   
+http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd      
+http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"&gt;
+  
+  &lt;broker xmlns="http://activemq.apache.org/schema/core" brokerName="brokerB1" destroyApplicationContextOnStop="true"&gt;
+    
     &lt;plugins&gt;
       &lt;loggingBrokerPlugin/&gt;
     &lt;/plugins&gt;
     
     &lt;persistenceAdapter&gt;
-      &lt;kahaDB directory=<span class="code-quote">"${activemq.base}/data/kahadb"</span> enableJournalDiskSyncs=<span class="code-quote">"<span class="code-keyword">false</span>"</span> indexWriteBatchSize=<span class="code-quote">"10000"</span> indexCacheSize=<span class="code-quote">"1000"</span>/&gt;
+      &lt;kahaDB directory="${activemq.base}/data/kahadb" enableJournalDiskSyncs="false" indexWriteBatchSize="10000" indexCacheSize="1000"/&gt;
     &lt;/persistenceAdapter&gt;
     
     &lt;destinationPolicy&gt;
       &lt;policyMap&gt;
         &lt;policyEntries&gt;
-          &lt;policyEntry queue=<span class="code-quote">"&gt;"</span> producerFlowControl=<span class="code-quote">"<span class="code-keyword">true</span>"</span> memoryLimit=<span class="code-quote">"5mb"</span>&gt;
+          &lt;policyEntry queue="&gt;" producerFlowControl="true" memoryLimit="5mb"&gt;
             &lt;deadLetterStrategy&gt;
-              &lt;individualDeadLetterStrategy queuePrefix=<span class="code-quote">"DLQ."</span> useQueueForQueueMessages=<span class="code-quote">"<span class="code-keyword">true</span>"</span>/&gt;
+              &lt;individualDeadLetterStrategy queuePrefix="DLQ." useQueueForQueueMessages="true"/&gt;
             &lt;/deadLetterStrategy&gt;
           &lt;/policyEntry&gt;
         &lt;/policyEntries&gt;
@@ -200,31 +209,31 @@
     &lt;/destinationPolicy&gt;
     
     &lt;managementContext&gt;
-      &lt;managementContext createConnector=<span class="code-quote">"<span class="code-keyword">false</span>"</span>/&gt;
+      &lt;managementContext createConnector="false"/&gt;
     &lt;/managementContext&gt;
     
     &lt;systemUsage&gt;
       &lt;systemUsage&gt;
         &lt;memoryUsage&gt;
-          &lt;memoryUsage limit=<span class="code-quote">"420 mb"</span>/&gt;
+          &lt;memoryUsage limit="420 mb"/&gt;
         &lt;/memoryUsage&gt;
         &lt;storeUsage&gt;
-          &lt;storeUsage limit=<span class="code-quote">"1 gb"</span>/&gt;
+          &lt;storeUsage limit="1 gb"/&gt;
         &lt;/storeUsage&gt;
         &lt;tempUsage&gt;
-          &lt;tempUsage limit=<span class="code-quote">"250 mb"</span>/&gt;
+          &lt;tempUsage limit="250 mb"/&gt;
         &lt;/tempUsage&gt;
       &lt;/systemUsage&gt;
     &lt;/systemUsage&gt;
     
     &lt;transportConnectors&gt;
-      &lt;transportConnector name=<span class="code-quote">"tcp"</span> uri=<span class="code-quote">"tcp:<span class="code-comment">//0.0.0.0:61616"</span>/&gt;
-</span>    &lt;/transportConnectors&gt;
+      &lt;transportConnector name="tcp" uri="tcp://0.0.0.0:61616"/&gt;
+    &lt;/transportConnectors&gt;
     
   &lt;/broker&gt;
   
 &lt;/beans&gt;
-</pre>
+]]></script>
 </div></div> 
 
 <p>However, in ActiveMQ 5.4, the XML configuration above would cause an exception similar to the following: </p>
@@ -236,21 +245,21 @@
 <p>To avoid this XML validation error in ActiveMQ 5.4, simply change the ordering of the XML elements so that they are in alphabetical order. Below is an example of the same XML configuration but in alphabetical order: </p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java"> 
-&lt;?xml version=<span class="code-quote">"1.0"</span>?&gt;
-&lt;beans xmlns=<span class="code-quote">"http:<span class="code-comment">//www.springframework.org/schema/beans"</span> xmlns:xsi=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span> 
-</span>xsi:schemaLocation="http:<span class="code-comment">//www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd   
-</span>http:<span class="code-comment">//activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd      
-</span>http:<span class="code-comment">//camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"&gt;
-</span>  
-  &lt;broker xmlns=<span class="code-quote">"http:<span class="code-comment">//activemq.apache.org/schema/core"</span> brokerName=<span class="code-quote">"brokerB1"</span> destroyApplicationContextOnStop=<span class="code-quote">"<span class="code-keyword">true</span>"</span>&gt;
-</span>    
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[ 
+&lt;?xml version="1.0"?&gt;
+&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-2.0.xsd   
+http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd      
+http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"&gt;
+  
+  &lt;broker xmlns="http://activemq.apache.org/schema/core" brokerName="brokerB1" destroyApplicationContextOnStop="true"&gt;
+    
     &lt;destinationPolicy&gt;
       &lt;policyMap&gt;
         &lt;policyEntries&gt;
-          &lt;policyEntry queue=<span class="code-quote">"&gt;"</span> producerFlowControl=<span class="code-quote">"<span class="code-keyword">true</span>"</span> memoryLimit=<span class="code-quote">"5mb"</span>&gt;
+          &lt;policyEntry queue="&gt;" producerFlowControl="true" memoryLimit="5mb"&gt;
             &lt;deadLetterStrategy&gt;
-              &lt;individualDeadLetterStrategy queuePrefix=<span class="code-quote">"DLQ."</span> useQueueForQueueMessages=<span class="code-quote">"<span class="code-keyword">true</span>"</span>/&gt;
+              &lt;individualDeadLetterStrategy queuePrefix="DLQ." useQueueForQueueMessages="true"/&gt;
             &lt;/deadLetterStrategy&gt;
           &lt;/policyEntry&gt;
         &lt;/policyEntries&gt;
@@ -258,11 +267,11 @@
     &lt;/destinationPolicy&gt;
     
     &lt;managementContext&gt;
-      &lt;managementContext createConnector=<span class="code-quote">"<span class="code-keyword">false</span>"</span>/&gt;
+      &lt;managementContext createConnector="false"/&gt;
     &lt;/managementContext&gt;
 
     &lt;persistenceAdapter&gt;
-      &lt;kahaDB directory=<span class="code-quote">"${activemq.base}/data/kahadb"</span> enableJournalDiskSyncs=<span class="code-quote">"<span class="code-keyword">false</span>"</span> indexWriteBatchSize=<span class="code-quote">"10000"</span> indexCacheSize=<span class="code-quote">"1000"</span>/&gt;
+      &lt;kahaDB directory="${activemq.base}/data/kahadb" enableJournalDiskSyncs="false" indexWriteBatchSize="10000" indexCacheSize="1000"/&gt;
     &lt;/persistenceAdapter&gt;
 
     &lt;plugins&gt;
@@ -272,25 +281,25 @@
     &lt;systemUsage&gt;
       &lt;systemUsage&gt;
         &lt;memoryUsage&gt;
-          &lt;memoryUsage limit=<span class="code-quote">"420 mb"</span>/&gt;
+          &lt;memoryUsage limit="420 mb"/&gt;
         &lt;/memoryUsage&gt;
         &lt;storeUsage&gt;
-          &lt;storeUsage limit=<span class="code-quote">"1 gb"</span>/&gt;
+          &lt;storeUsage limit="1 gb"/&gt;
         &lt;/storeUsage&gt;
         &lt;tempUsage&gt;
-          &lt;tempUsage limit=<span class="code-quote">"250 mb"</span>/&gt;
+          &lt;tempUsage limit="250 mb"/&gt;
         &lt;/tempUsage&gt;
       &lt;/systemUsage&gt;
     &lt;/systemUsage&gt;
     
     &lt;transportConnectors&gt;
-      &lt;transportConnector name=<span class="code-quote">"tcp"</span> uri=<span class="code-quote">"tcp:<span class="code-comment">//0.0.0.0:61616"</span>/&gt;
-</span>    &lt;/transportConnectors&gt;
+      &lt;transportConnector name="tcp" uri="tcp://0.0.0.0:61616"/&gt;
+    &lt;/transportConnectors&gt;
     
   &lt;/broker&gt;
   
 &lt;/beans&gt;
-</pre>
+]]></script>
 </div></div> 
 
 <p>Configurations can be easily tested against ActiveMQ 5.4 using the ActiveMQ startup script. Below is an example: </p>
@@ -327,8 +336,8 @@ Loading message broker from: xbean:<a sh
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/xmpp.html
==============================================================================
--- websites/production/activemq/content/xmpp.html (original)
+++ websites/production/activemq/content/xmpp.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <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 type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- XMPP
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -78,15 +88,15 @@
 
 <p>To use just add a connector as follows</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-&lt;broker xmlns=<span class="code-quote">"http:<span class="code-comment">//activemq.org/config/1.0"</span>&gt;
-</span>    &lt;transportConnectors&gt;
-       &lt;transportConnector name=<span class="code-quote">"openwire"</span> uri=<span class="code-quote">"tcp:<span class="code-comment">//localhost:61616"</span> discoveryUri=<span class="code-quote">"multicast://<span class="code-keyword">default</span>"</span>/&gt;
-</span>       &lt;transportConnector name=<span class="code-quote">"stomp"</span>    uri=<span class="code-quote">"stomp:<span class="code-comment">//localhost:61613"</span>/&gt;
-</span>       &lt;transportConnector name=<span class="code-quote">"xmpp"</span>     uri=<span class="code-quote">"xmpp:<span class="code-comment">//localhost:61222"</span>/&gt;
-</span>    &lt;/transportConnectors&gt;
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;broker xmlns="http://activemq.org/config/1.0"&gt;
+    &lt;transportConnectors&gt;
+       &lt;transportConnector name="openwire" uri="tcp://localhost:61616" discoveryUri="multicast://default"/&gt;
+       &lt;transportConnector name="stomp"    uri="stomp://localhost:61613"/&gt;
+       &lt;transportConnector name="xmpp"     uri="xmpp://localhost:61222"/&gt;
+    &lt;/transportConnectors&gt;
   &lt;/broker&gt;
-</pre>
+]]></script>
 </div></div>
 <p>And you can now use XMPP to connect to the broker &amp; send and receive messages.</p>
 <div class="panelMacro"><table class="warningMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/forbidden.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">Some versions of the broker (5.0-5.2) does not include <a shape="rect" class="external-link" href="http://woodstox.codehaus.org/" rel="nofollow">WoodStox</a> library by default, which could impact ActiveMQ XMPP funcionality. You should have a library named like <tt>wstx-asl-x.x.x.jar</tt> in the <tt>lib/optional</tt> directory of your broker. If that's not the case, download it from <a shape="rect" class="external-link" href="http://woodstox.codehaus.org/" rel="nofollow">here</a> and put it in the classpath</td></tr></table></div>
@@ -172,8 +182,8 @@ Tested version 1.3.3 works fine. The onl
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/zeroconf-transport-reference.html
==============================================================================
--- websites/production/activemq/content/zeroconf-transport-reference.html (original)
+++ websites/production/activemq/content/zeroconf-transport-reference.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <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 type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- ZeroConf Transport Reference
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -88,14 +98,14 @@ or<br clear="none">
 <p>Note that to be able to use ZeroConf to find brokers, the brokers need to have <a shape="rect" href="discovery.html" title="Discovery">Discovery</a> enabled. To configure discovery in a Broker you should use the <a shape="rect" href="xml-configuration.html" title="Xml Configuration">Xml Configuration</a>. Its basically something like...</p>
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-java">
-&lt;broker name=<span class="code-quote">"foo"</span>&gt;
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+&lt;broker name="foo"&gt;
   &lt;transportConnectors&gt;
-    &lt;transportConnector name=<span class="code-quote">"openwire"</span> uri=<span class="code-quote">"tcp:<span class="code-comment">//0.0.0.0:61616"</span> discoveryUri="zeroconf:_activemq_development. /&gt;
-</span>  &lt;/transportConnectors&gt;
+    &lt;transportConnector name="openwire" uri="tcp://0.0.0.0:61616" discoveryUri="zeroconf:_activemq_development. /&gt;
+  &lt;/transportConnectors&gt;
   ...
 &lt;/broker&gt;
-</pre>
+]]></script>
 </div></div>
 
 <h5><a shape="rect" name="ZeroConfTransportReference-ExampleclientURI"></a>Example client URI</h5>
@@ -117,8 +127,8 @@ or<br clear="none">
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/zeroconf.html
==============================================================================
--- websites/production/activemq/content/zeroconf.html (original)
+++ websites/production/activemq/content/zeroconf.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,7 @@
     </style>
     <![endif]-->
 
+    
     <title>
     Apache ActiveMQ &#8482; -- ZeroConf
     </title>
@@ -50,8 +51,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -98,8 +99,8 @@ based tools can be used in conjunction w
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">

Modified: websites/production/activemq/content/zos.html
==============================================================================
--- websites/production/activemq/content/zos.html (original)
+++ websites/production/activemq/content/zos.html Fri Jul 12 12:46:14 2013
@@ -32,6 +32,16 @@
     </style>
     <![endif]-->
 
+          <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 type="text/javascript"> 
+        SyntaxHighlighter.defaults['toolbar'] = false; 
+        SyntaxHighlighter.all(); 
+      </script> 
+    
     <title>
     Apache ActiveMQ &#8482; -- zOS
     </title>
@@ -50,8 +60,8 @@
       <div>
 
 <!-- Banner -->
-
-	<div id="asf_logo">
+<p>
+	</p><div id="asf_logo">
 	<div id="activemq_logo">
             <a shape="rect" style="float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;" href="http://activemq.apache.org" title="The most popular and powerful open source Message Broker">ActiveMQ</a> &#8482;
             <a shape="rect" style="float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;" href="http://www.apache.org" title="The Apache Software Foundation">ASF</a>
@@ -100,131 +110,131 @@
 <p>I have renamed the lib/optional directory in USS and shortened some of the lib/optional jar names to make the JCL easier to handle. The JCL to run the ActiveMQ broker is then:</p>
 
 <div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ACTIVEMQ.JCL</b></div><div class="codeContent panelContent">
-<pre class="code-java">
-<span class="code-comment">//ACTIVEMQ JOB   (),
-</span><span class="code-comment">//         CLASS=A,                                                    
-</span><span class="code-comment">//         MSGCLASS=X,                                                 
-</span><span class="code-comment">//         MSGLEVEL=(1,1),                                             
-</span><span class="code-comment">//         NOTIFY=&amp;SYSUID,                                             
-</span><span class="code-comment">//         REGION=0M,                                                  
-</span><span class="code-comment">//         TIME=1440                                                   
-</span><span class="code-comment">//PROCLIB JCLLIB ORDER=&lt;JZOS.SYS1.PROCLIB&gt;
-</span><span class="code-comment">//*                                                                    
-</span><span class="code-comment">//*********************************************************************
-</span><span class="code-comment">//*                                                                    
-</span><span class="code-comment">//* Batch job to run Tomcat under JZOS                                 
-</span><span class="code-comment">//*                                                                    
-</span><span class="code-comment">//* Tailor the proc and job <span class="code-keyword">for</span> your installation:                     
-</span><span class="code-comment">//* 1.) Modify the Job card per your installation's requirements       
-</span><span class="code-comment">//* 2.) Modify the PROCLIB card to point to JZOS proclib               
-</span><span class="code-comment">//* 3.) Set VERSION='14' <span class="code-keyword">for</span> Java 1.4 or VERSION='50' <span class="code-keyword">for</span> Java 5       
-</span><span class="code-comment">//* 4.) Set JAVA_HOME to point the location of the Java SDK            
-</span><span class="code-comment">//* 5.) Set CATALINA_HOME to point to the shared Tomcat install dir    
-</span><span class="code-comment">//* 6.) (Optional) set CATALINA_BASE to point to instance specific     
-</span><span class="code-comment">//*     Tomcat base dir                                                
-</span><span class="code-comment">//*                                                                    
-</span><span class="code-comment">//*********************************************************************
-</span><span class="code-comment">//*                                                                    
-</span><span class="code-comment">//JAVA EXEC PROC=JVMPRC50,                                             
-</span><span class="code-comment">// LOGLVL='+D',
-</span><span class="code-comment">// JAVACLS='org.apache.activemq.console.Main',
-</span><span class="code-comment">// ARGS='start'
-</span><span class="code-comment">//STDENV DD *
-</span># This is a shell script which configures
-# any environment variables <span class="code-keyword">for</span> the Java JVM.
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
+//ACTIVEMQ JOB   (),
+//         CLASS=A,                                                    
+//         MSGCLASS=X,                                                 
+//         MSGLEVEL=(1,1),                                             
+//         NOTIFY=&amp;SYSUID,                                             
+//         REGION=0M,                                                  
+//         TIME=1440                                                   
+//PROCLIB JCLLIB ORDER=&lt;JZOS.SYS1.PROCLIB&gt;
+//*                                                                    
+//*********************************************************************
+//*                                                                    
+//* Batch job to run Tomcat under JZOS                                 
+//*                                                                    
+//* Tailor the proc and job for your installation:                     
+//* 1.) Modify the Job card per your installation's requirements       
+//* 2.) Modify the PROCLIB card to point to JZOS proclib               
+//* 3.) Set VERSION='14' for Java 1.4 or VERSION='50' for Java 5       
+//* 4.) Set JAVA_HOME to point the location of the Java SDK            
+//* 5.) Set CATALINA_HOME to point to the shared Tomcat install dir    
+//* 6.) (Optional) set CATALINA_BASE to point to instance specific     
+//*     Tomcat base dir                                                
+//*                                                                    
+//*********************************************************************
+//*                                                                    
+//JAVA EXEC PROC=JVMPRC50,                                             
+// LOGLVL='+D',
+// JAVACLS='org.apache.activemq.console.Main',
+// ARGS='start'
+//STDENV DD *
+# This is a shell script which configures
+# any environment variables for the Java JVM.
 # Variables must be exported to be seen by the launcher.
 . /etc/profile
 export JAVA_HOME=/space/javaV5_31/J5.0 
 AMQ_HOME=/home/user/activemq/amq
-ACTIVEMQ_BASE=<span class="code-quote">"$AMQ_HOME"</span>
+ACTIVEMQ_BASE="$AMQ_HOME"
 
-export PATH=/bin:<span class="code-quote">"${JAVA_HOME}"</span>/bin:
+export PATH=/bin:"${JAVA_HOME}"/bin:
 
-LIBPATH=/lib:/usr/lib:<span class="code-quote">"${JAVA_HOME}"</span>/bin
-LIBPATH=<span class="code-quote">"$LIBPATH"</span>:<span class="code-quote">"${JAVA_HOME}"</span>/bin/classic
-export LIBPATH=<span class="code-quote">"$LIBPATH"</span>:
-
-CLASSPATH=<span class="code-quote">"${JAVA_HOME}/lib/tools.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/conf"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/activemq-all-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/bin/run.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/bin/wrapper.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/activation-1.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/activemq-console-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/activemq-core-5.0.0-tests.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/activemq-core-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/activemq-jaas-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/activemq-web-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/camel-core-1.2.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/camel-jms-1.2.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/camel-spring-1.2.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/commons-logging-1.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/geronimo-j2ee-management_1.0_spec-1.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/geronimo-jms_1.1_spec-1.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/geronimo-jta_1.0.1B_spec-1.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/jaxb-api-2.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/jaxb-impl-2.0.3.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/stax-1.2.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/stax-api-1.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/spring-2.0.6.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/xbean.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/jetty-6.1.4.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/jetty-util-6.1.4.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/activeio-core-3.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/geronimo-j2ee-connector.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/activeio-core-tests.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/geronimo-j2ee-jacc.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/activemq-optional-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/activemq-xmpp-5.0.0.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/jmdns-1.0-RC2.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/commons-beanutils-1.6.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/log4j-1.2.14.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/commons-collections-3.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/servlet-api-2.5-6.1.4.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/commons-dbcp-1.2.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/commons-httpclient-2.0.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/commons-pool-1.2.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/xmlpull-1.1.3.4d_b4_min.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/derby-10.1.3.1.jar"</span>
-CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:<span class="code-quote">"$AMQ_HOME/lib/opt/xstream-1.1.2.jar"</span>
-export CLASSPATH=<span class="code-quote">"$CLASSPATH"</span>:
+LIBPATH=/lib:/usr/lib:"${JAVA_HOME}"/bin
+LIBPATH="$LIBPATH":"${JAVA_HOME}"/bin/classic
+export LIBPATH="$LIBPATH":
+
+CLASSPATH="${JAVA_HOME}/lib/tools.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/conf"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/activemq-all-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/bin/run.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/bin/wrapper.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/activation-1.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/activemq-console-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/activemq-core-5.0.0-tests.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/activemq-core-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/activemq-jaas-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/activemq-web-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/camel-core-1.2.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/camel-jms-1.2.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/camel-spring-1.2.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/commons-logging-1.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/geronimo-j2ee-management_1.0_spec-1.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/geronimo-jms_1.1_spec-1.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/geronimo-jta_1.0.1B_spec-1.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/jaxb-api-2.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/jaxb-impl-2.0.3.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/stax-1.2.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/stax-api-1.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/spring-2.0.6.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/xbean.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/jetty-6.1.4.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/jetty-util-6.1.4.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/activeio-core-3.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/geronimo-j2ee-connector.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/activeio-core-tests.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/geronimo-j2ee-jacc.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/activemq-optional-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/activemq-xmpp-5.0.0.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/jmdns-1.0-RC2.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/commons-beanutils-1.6.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/log4j-1.2.14.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/commons-collections-3.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/servlet-api-2.5-6.1.4.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/commons-dbcp-1.2.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/commons-httpclient-2.0.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/commons-pool-1.2.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/xmlpull-1.1.3.4d_b4_min.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/derby-10.1.3.1.jar"
+CLASSPATH="$CLASSPATH":"$AMQ_HOME/lib/opt/xstream-1.1.2.jar"
+export CLASSPATH="$CLASSPATH":
 
 # Set JZOS specific options
-# Use <span class="code-keyword">this</span> variable to specify encoding <span class="code-keyword">for</span> DD STDOUT and STDERR
+# Use this variable to specify encoding for DD STDOUT and STDERR
 #export JZOS_OUTPUT_ENCODING=IBM-1047
-# Use <span class="code-keyword">this</span> variable to prevent JZOS from handling MVS <span class="code-keyword">operator</span> commands
-#export JZOS_ENABLE_MVS_COMMANDS=<span class="code-keyword">false</span>
-# Use <span class="code-keyword">this</span> variable to supply additional arguments to main
+# Use this variable to prevent JZOS from handling MVS operator commands
+#export JZOS_ENABLE_MVS_COMMANDS=false
+# Use this variable to supply additional arguments to main
 #export JZOS_MAIN_ARGS=""
 
 # Configure JVM options
-# Note that ActiveMQ requires <span class="code-keyword">default</span> ASCII file.encoding
-IJO=<span class="code-quote">"-Xms64m -Xmx512m"</span>
-IJO=<span class="code-quote">"$IJO -Dfile.encoding=ISO8859-1"</span>
-IJO=<span class="code-quote">"$IJO -Dcom.sun.management.jmxremote"</span>
-IJO=<span class="code-quote">"$IJO -Dorg.apache.activemq.UseDedicatedTaskRunner=<span class="code-keyword">true</span>"</span>
-IJO=<span class="code-quote">"$IJO -Dderby.system.home=${ACTIVEMQ_BASE}/data"</span>
-IJO=<span class="code-quote">"$IJO -Dderby.storage.fileSyncTransactionLog=<span class="code-keyword">true</span>"</span>
-IJO=<span class="code-quote">"$IJO -Djavax.net.ssl.keyStorePassword=password"</span>
-IJO=<span class="code-quote">"$IJO -Djavax.net.ssl.trustStorePassword=password"</span>
-IJO=<span class="code-quote">"$IJO -Djavax.net.ssl.keyStore=${ACTIVEMQ_BASE}/conf/broker.ks"</span>
-IJO=<span class="code-quote">"$IJO -Djavax.net.ssl.trustStore=${ACTIVEMQ_BASE}/conf/broker.ts"</span>
-IJO=<span class="code-quote">"$IJO -Dactivemq.classpath=${CLASSPATH}"</span>
-IJO=<span class="code-quote">"$IJO -Dactivemq.base=${ACTIVEMQ_BASE}"</span>
-IJO=<span class="code-quote">"$IJO -Dactivemq.home=${AMQ_HOME}"</span>
-IJO=<span class="code-quote">"$IJO -Djava.io.tmpdir=${ACTIVEMQ_BASE}/temp"</span>
+# Note that ActiveMQ requires default ASCII file.encoding
+IJO="-Xms64m -Xmx512m"
+IJO="$IJO -Dfile.encoding=ISO8859-1"
+IJO="$IJO -Dcom.sun.management.jmxremote"
+IJO="$IJO -Dorg.apache.activemq.UseDedicatedTaskRunner=true"
+IJO="$IJO -Dderby.system.home=${ACTIVEMQ_BASE}/data"
+IJO="$IJO -Dderby.storage.fileSyncTransactionLog=true"
+IJO="$IJO -Djavax.net.ssl.keyStorePassword=password"
+IJO="$IJO -Djavax.net.ssl.trustStorePassword=password"
+IJO="$IJO -Djavax.net.ssl.keyStore=${ACTIVEMQ_BASE}/conf/broker.ks"
+IJO="$IJO -Djavax.net.ssl.trustStore=${ACTIVEMQ_BASE}/conf/broker.ts"
+IJO="$IJO -Dactivemq.classpath=${CLASSPATH}"
+IJO="$IJO -Dactivemq.base=${ACTIVEMQ_BASE}"
+IJO="$IJO -Dactivemq.home=${AMQ_HOME}"
+IJO="$IJO -Djava.io.tmpdir=${ACTIVEMQ_BASE}/temp"
 
 # Configure SDK5.0 to use shared classes (at group level)
-# You must comment <span class="code-keyword">this</span> out <span class="code-keyword">if</span> you are not running SDK 5
+# You must comment this out if you are not running SDK 5
 groupname=`id -gn`
-IJO=<span class="code-quote">"$IJO -Xshareclasses:name=$groupname,groupAccess"</span>
-export IBM_JAVA_OPTIONS=<span class="code-quote">"$IJO "</span>
+IJO="$IJO -Xshareclasses:name=$groupname,groupAccess"
+export IBM_JAVA_OPTIONS="$IJO "
 
-export JAVA_DUMP_HEAP=<span class="code-keyword">false</span>
+export JAVA_DUMP_HEAP=false
 export JAVA_PROPAGATE=NO
 export IBM_JAVA_ZOS_TDUMP=NO
-<span class="code-comment">//</span>
-</pre>
+//
+]]></script>
 </div></div>
 
 <h3><a shape="rect" name="zOS-Test"></a>Test</h3>
@@ -245,8 +255,8 @@ export IBM_JAVA_ZOS_TDUMP=NO
 
 <h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
 
-
-<div>
+<p>
+</p><div>
 <form enctype="application/x-www-form-urlencoded" method="get" action="http://www.google.com/search" style="font-size: 10px;">
 <input type="hidden" name="ie" value="UTF-8">
 <input type="hidden" name="oe" value="UTF-8">