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 2014/02/12 19:21:47 UTC

svn commit: r897658 [13/18] - in /websites/production/activemq/content: ./ cache/ nms/ nms/2011/11/18/ nms/2012/01/28/ nms/2012/04/13/ nms/2012/05/04/ nms/2012/08/31/ nms/2013/06/10/ nms/2013/10/25/ nms/index.data/

Modified: websites/production/activemq/content/nms/examples.html
==============================================================================
--- websites/production/activemq/content/nms/examples.html (original)
+++ websites/production/activemq/content/nms/examples.html Wed Feb 12 18:21:44 2014
@@ -73,7 +73,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="overview.html">Overview</a>&nbsp;&gt;&nbsp;<a href="using-nms.html">Using NMS</a>&nbsp;&gt;&nbsp;<a href="examples.html">Examples</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -81,11 +81,11 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><h2><a shape="rect" name="Examples-Examples"></a>Examples</h2>
+<div class="wiki-content maincontent"><h2 id="Examples-Examples">Examples</h2>
 
 <p>The following example gives a brief demonstration for connecting, sending and receiving a message using NMS.</p>
 
-<div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>Sync NMS Example</b></div><div class="codeContent panelContent">
+<div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>Sync NMS Example</b></div><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 using System;
 using Apache.NMS;
@@ -103,9 +103,9 @@ public class TestMain
         //    ems:tcp://tibcohost:7222
         //    msmq://localhost
 
-        Uri connecturi = new Uri("activemq:tcp://activemqhost:61616");
+        Uri connecturi = new Uri(&quot;activemq:tcp://activemqhost:61616&quot;);
         
-        Console.WriteLine("About to connect to " + connecturi);
+        Console.WriteLine(&quot;About to connect to &quot; + connecturi);
 
         // NOTE: ensure the nmsprovider-activemq.config file exists in the executable folder.
         IConnectionFactory factory = new NMSConnectionFactory(connecturi);
@@ -116,29 +116,29 @@ public class TestMain
              // Examples for getting a destination:
              //
              // Hard coded destinations:
-             //    IDestination destination = session.GetQueue("FOO.BAR");
+             //    IDestination destination = session.GetQueue(&quot;FOO.BAR&quot;);
              //    Debug.Assert(destination is IQueue);
-             //    IDestination destination = session.GetTopic("FOO.BAR");
+             //    IDestination destination = session.GetTopic(&quot;FOO.BAR&quot;);
              //    Debug.Assert(destination is ITopic);
              //
              // Embedded destination type in the name:
-             //    IDestination destination = SessionUtil.GetDestination(session, "queue://FOO.BAR");
+             //    IDestination destination = SessionUtil.GetDestination(session, &quot;queue://FOO.BAR&quot;);
              //    Debug.Assert(destination is IQueue);
-             //    IDestination destination = SessionUtil.GetDestination(session, "topic://FOO.BAR");
+             //    IDestination destination = SessionUtil.GetDestination(session, &quot;topic://FOO.BAR&quot;);
              //    Debug.Assert(destination is ITopic);
              //
              // Defaults to queue if type is not specified:
-             //    IDestination destination = SessionUtil.GetDestination(session, "FOO.BAR");
+             //    IDestination destination = SessionUtil.GetDestination(session, &quot;FOO.BAR&quot;);
              //    Debug.Assert(destination is IQueue);
              //
              // .NET 3.5 Supports Extension methods for a simplified syntax:
-             //    IDestination destination = session.GetDestination("queue://FOO.BAR");
+             //    IDestination destination = session.GetDestination(&quot;queue://FOO.BAR&quot;);
              //    Debug.Assert(destination is IQueue);
-             //    IDestination destination = session.GetDestination("topic://FOO.BAR");
+             //    IDestination destination = session.GetDestination(&quot;topic://FOO.BAR&quot;);
              //    Debug.Assert(destination is ITopic);
 
-            IDestination destination = SessionUtil.GetDestination(session, "queue://FOO.BAR");
-            Console.WriteLine("Using destination: " + destination);
+            IDestination destination = SessionUtil.GetDestination(session, &quot;queue://FOO.BAR&quot;);
+            Console.WriteLine(&quot;Using destination: &quot; + destination);
 
             // Create a consumer and producer
             using(IMessageConsumer consumer = session.CreateConsumer(destination))
@@ -149,10 +149,10 @@ public class TestMain
                 producer.Persistent = true;
 
                 // Send a message
-                ITextMessage request = session.CreateTextMessage("Hello World!");
-                request.NMSCorrelationID = "abc";
-                request.Properties["NMSXGroupID"] = "cheese";
-                request.Properties["myHeader"] = "Cheddar";
+                ITextMessage request = session.CreateTextMessage(&quot;Hello World!&quot;);
+                request.NMSCorrelationID = &quot;abc&quot;;
+                request.Properties[&quot;NMSXGroupID&quot;] = &quot;cheese&quot;;
+                request.Properties[&quot;myHeader&quot;] = &quot;Cheddar&quot;;
 
                 producer.Send(request);
 
@@ -160,12 +160,12 @@ public class TestMain
                 ITextMessage message = consumer.Receive() as ITextMessage;
                 if(message == null)
                 {
-                    Console.WriteLine("No message received!");
+                    Console.WriteLine(&quot;No message received!&quot;);
                 }
                 else
                 {
-                    Console.WriteLine("Received message with ID:   " + message.NMSMessageId);
-                    Console.WriteLine("Received message with text: " + message.Text);
+                    Console.WriteLine(&quot;Received message with ID:   &quot; + message.NMSMessageId);
+                    Console.WriteLine(&quot;Received message with text: &quot; + message.Text);
                 }
             }
         }
@@ -175,11 +175,11 @@ public class TestMain
 ]]></script>
 </div></div>
 
-<h3><a shape="rect" name="Examples-Asynchronousconsumption"></a>Asynchronous consumption</h3>
+<h3 id="Examples-Asynchronousconsumption">Asynchronous consumption</h3>
 
 <p>You have the choice of synchronously pulling messages via the Receive() methods as shown above, or you can use the asynchronous approach demonstrated in the following example:</p>
 
-<div class="code panel" style="border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;"><b>Async NMS Example</b></div><div class="codeContent panelContent">
+<div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>Async NMS Example</b></div><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 
 using System;
@@ -205,9 +205,9 @@ public class TestMain
         //    ems:tcp://tibcohost:7222
         //    msmq://localhost
 
-        Uri connecturi = new Uri("activemq:tcp://activemqhost:61616");
+        Uri connecturi = new Uri(&quot;activemq:tcp://activemqhost:61616&quot;);
         
-        Console.WriteLine("About to connect to " + connecturi);
+        Console.WriteLine(&quot;About to connect to &quot; + connecturi);
 
         // NOTE: ensure the nmsprovider-activemq.config file exists in the executable folder.
 
@@ -219,30 +219,30 @@ public class TestMain
             // Examples for getting a destination:
             //
             // Hard coded destinations:
-            //    IDestination destination = session.GetQueue("FOO.BAR");
+            //    IDestination destination = session.GetQueue(&quot;FOO.BAR&quot;);
             //    Debug.Assert(destination is IQueue);
-            //    IDestination destination = session.GetTopic("FOO.BAR");
+            //    IDestination destination = session.GetTopic(&quot;FOO.BAR&quot;);
             //    Debug.Assert(destination is ITopic);
             //
             // Embedded destination type in the name:
-            //    IDestination destination = SessionUtil.GetDestination(session, "queue://FOO.BAR");
+            //    IDestination destination = SessionUtil.GetDestination(session, &quot;queue://FOO.BAR&quot;);
             //    Debug.Assert(destination is IQueue);
-            //    IDestination destination = SessionUtil.GetDestination(session, "topic://FOO.BAR");
+            //    IDestination destination = SessionUtil.GetDestination(session, &quot;topic://FOO.BAR&quot;);
             //    Debug.Assert(destination is ITopic);
             //
             // Defaults to queue if type is not specified:
-            //    IDestination destination = SessionUtil.GetDestination(session, "FOO.BAR");
+            //    IDestination destination = SessionUtil.GetDestination(session, &quot;FOO.BAR&quot;);
             //    Debug.Assert(destination is IQueue);
             //
             // .NET 3.5 Supports Extension methods for a simplified syntax:
-            //    IDestination destination = session.GetDestination("queue://FOO.BAR");
+            //    IDestination destination = session.GetDestination(&quot;queue://FOO.BAR&quot;);
             //    Debug.Assert(destination is IQueue);
-            //    IDestination destination = session.GetDestination("topic://FOO.BAR");
+            //    IDestination destination = session.GetDestination(&quot;topic://FOO.BAR&quot;);
             //    Debug.Assert(destination is ITopic);
 
-            IDestination destination = SessionUtil.GetDestination(session, "queue://FOO.BAR");
+            IDestination destination = SessionUtil.GetDestination(session, &quot;queue://FOO.BAR&quot;);
 
-            Console.WriteLine("Using destination: " + destination);
+            Console.WriteLine(&quot;Using destination: &quot; + destination);
 
             // Create a consumer and producer
             using(IMessageConsumer consumer = session.CreateConsumer(destination))
@@ -255,10 +255,10 @@ public class TestMain
                 consumer.Listener += new MessageListener(OnMessage);
 
                 // Send a message
-                ITextMessage request = session.CreateTextMessage("Hello World!");
-                request.NMSCorrelationID = "abc";
-                request.Properties["NMSXGroupID"] = "cheese";
-                request.Properties["myHeader"] = "Cheddar";
+                ITextMessage request = session.CreateTextMessage(&quot;Hello World!&quot;);
+                request.NMSCorrelationID = &quot;abc&quot;;
+                request.Properties[&quot;NMSXGroupID&quot;] = &quot;cheese&quot;;
+                request.Properties[&quot;myHeader&quot;] = &quot;Cheddar&quot;;
 
                 producer.Send(request);
 
@@ -266,12 +266,12 @@ public class TestMain
                 semaphore.WaitOne((int) receiveTimeout.TotalMilliseconds, true);
                 if(message == null)
                 {
-                    Console.WriteLine("No message received!");
+                    Console.WriteLine(&quot;No message received!&quot;);
                 }
                 else
                 {
-                    Console.WriteLine("Received message with ID:   " + message.NMSMessageId);
-                    Console.WriteLine("Received message with text: " + message.Text);
+                    Console.WriteLine(&quot;Received message with ID:   &quot; + message.NMSMessageId);
+                    Console.WriteLine(&quot;Received message with text: &quot; + message.Text);
                 }
             }
         }
@@ -288,7 +288,7 @@ public class TestMain
 ]]></script>
 </div></div>
 
-<p>The above uses a C# <b>delegate</b> so that the OnMessage() method will be called whenever a message arrives.</p>
+<p>The above uses a C# <strong>delegate</strong> so that the OnMessage() method will be called whenever a message arrives.</p>
 
 <p>Note that the threading contract is similar to that of JMS - messages are dispatched for a single session's consumers in one thread at once. Consumers in different sessions can process messages concurrently, but consumers in the same session are guarenteed to be called by only one thread at a time (e.g., if you have 3 consumers on a session, then only one of the consumers will be called concurrently).</p></div>
         </td>
@@ -296,17 +296,17 @@ public class TestMain
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -319,15 +319,14 @@ public class TestMain
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Modified: websites/production/activemq/content/nms/faq.html
==============================================================================
--- websites/production/activemq/content/nms/faq.html (original)
+++ websites/production/activemq/content/nms/faq.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="faq.html">FAQ</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -72,41 +72,41 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><h2><a shape="rect" name="FAQ-GeneralQuestions"></a>General Questions</h2>
+<div class="wiki-content maincontent"><h2 id="FAQ-GeneralQuestions">General Questions</h2>
 
-<ul><li><a shape="rect" href="are-there-more-faq-entries.html" title="Are there more FAQ Entries">Are there more FAQ Entries</a></li><li><a shape="rect" href="should-i-pool-connections.html" title="Should I pool connections">Should I pool connections</a></li><li><a shape="rect" href="what-is-nms.html" title="What is NMS">What is NMS</a></li></ul>
+<ul class="childpages-macro"><li><a shape="rect" href="are-there-more-faq-entries.html">Are there more FAQ Entries</a></li><li><a shape="rect" href="should-i-pool-connections.html">Should I pool connections</a></li><li><a shape="rect" href="what-is-nms.html">What is NMS</a></li></ul>
 
-<h2><a shape="rect" name="FAQ-UsingNMSFAQ"></a>Using NMS FAQ</h2>
+<h2 id="FAQ-UsingNMSFAQ">Using NMS FAQ</h2>
 
 
 
-<h2><a shape="rect" name="FAQ-UsingNMS.ActiveMQFAQ"></a>Using NMS.ActiveMQ FAQ</h2>
+<h2 id="FAQ-UsingNMS.ActiveMQFAQ">Using NMS.ActiveMQ FAQ</h2>
 
 
 
-<h2><a shape="rect" name="FAQ-UsingNMS.StompFAQ"></a>Using NMS.Stomp FAQ</h2>
+<h2 id="FAQ-UsingNMS.StompFAQ">Using NMS.Stomp FAQ</h2>
 
-<h2><a shape="rect" name="FAQ-UsingNMS.MSMQFAQ"></a>Using NMS.MSMQ FAQ</h2>
+<h2 id="FAQ-UsingNMS.MSMQFAQ">Using NMS.MSMQ FAQ</h2>
 
-<h2><a shape="rect" name="FAQ-UsingNMS.EMSFAQ"></a>Using NMS.EMS FAQ</h2>
+<h2 id="FAQ-UsingNMS.EMSFAQ">Using NMS.EMS FAQ</h2>
 
-<h2><a shape="rect" name="FAQ-UsingNMS.WCFFAQ"></a>Using NMS.WCF FAQ</h2></div>
+<h2 id="FAQ-UsingNMS.WCFFAQ">Using NMS.WCF FAQ</h2></div>
         </td>
         <td valign="top">
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -119,15 +119,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Added: websites/production/activemq/content/nms/index.data/dig.png
==============================================================================
Binary file - no diff available.

Propchange: websites/production/activemq/content/nms/index.data/dig.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Modified: websites/production/activemq/content/nms/index.html
==============================================================================
--- websites/production/activemq/content/nms/index.html (original)
+++ websites/production/activemq/content/nms/index.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -72,20 +72,19 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><p>Welcome to the Apache NMS project, the <a shape="rect" href="nms-api.html" title="NMS API">.NET Messaging API</a>.</p>
+<div class="wiki-content maincontent"><p>Welcome to the Apache NMS project, the <a shape="rect" href="nms-api.html">.NET Messaging API</a>.</p>
 
-<h3><a shape="rect" name="Index-NMSAPIOverview"></a>NMS API Overview</h3>
+<h3 id="Index-NMSAPIOverview">NMS API Overview</h3>
 
-<p>The <a shape="rect" href="apachenms.html" title="Apache.NMS">NMS API</a> This allows you to build .NET applications in C#, VB, or any other .NET language, using a single API to connect to multiple different providers using a JMS style API.</p>
+<p>The <a shape="rect" href="apachenms.html">NMS API</a> This allows you to build .NET applications in C#, VB, or any other .NET language, using a single API to connect to multiple different providers using a JMS style API.</p>
 
-<h3><a shape="rect" name="Index-NMSProviders"></a>NMS Providers</h3>
+<h3 id="Index-NMSProviders">NMS Providers</h3>
 
 <p>An NMS Provider is a .NET Assembly that provides an implementation of the NMS API that provides connectivity with a particular Messaging Service or an implementation of a standard Messaging Protocol.  Currently, the following providers are available:</p>
 
-<ul><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ"><b>ActiveMQ</b></a> client which communicates with ActiveMQ using its own native wire protocol and provides many <a shape="rect" href="activemq-advanced-features.html" title="ActiveMQ Advanced Features">advanced features</a> beyond the standard NMS API.</li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp"><b>STOMP</b></a> which connects to any <a shape="rect" class="external-link" href="http://stomp.codehaus.org/" rel="nofollow">STOMP Broker</a>.&#160; Also, when coupled with <a shape="rect" class="external-link" href="http://stomp.codehaus.org/StompConnect" rel="nofollow">StompConnect</a>, NMS can be used to communicate with pretty much any existing MOM provider! (Or at least those that support JMS which most MOM providers do).</li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ"><b>MSMQ</b></a> is an implementation of NMS using Microsoft's MSMQ API.</li><li
 ><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS"><b>EMS</b></a> provider for talking to TIBCO's EMS message broker.&#160; To use this, you will need to following TIBCO's licensing requirements to acquire the TIBCO client assembly DLL.&#160; NMS does not ship with the TIBCO client assembly.</li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF"><b>WCF</b></a> provides support of Windows Communications Framework.</li></ul>
+<ul><li><a shape="rect" href="apachenmsactivemq.html"><strong>ActiveMQ</strong></a> client which communicates with ActiveMQ using its own native wire protocol and provides many <a shape="rect" href="activemq-advanced-features.html">advanced features</a> beyond the standard NMS API.</li><li><a shape="rect" href="apachenmsstomp.html"><strong>STOMP</strong></a> which connects to any <a shape="rect" class="external-link" href="http://stomp.codehaus.org/" rel="nofollow">STOMP Broker</a>.&#160; Also, when coupled with <a shape="rect" class="external-link" href="http://stomp.codehaus.org/StompConnect" rel="nofollow">StompConnect</a>, NMS can be used to communicate with pretty much any existing MOM provider! (Or at least those that support JMS which most MOM providers do).</li><li><a shape="rect" href="apachenmsmsmq.html"><strong>MSMQ</strong></a> is an implementation of NMS using Microsoft's MSMQ API.</li><li><a shape="rect" href="apachenmsems.html"><strong>EMS</strong></a> provider for ta
 lking to TIBCO's EMS message broker.&#160; To use this, you will need to following TIBCO's licensing requirements to acquire the TIBCO client assembly DLL.&#160; NMS does not ship with the TIBCO client assembly.</li><li><a shape="rect" href="apachenmswcf.html"><strong>WCF</strong></a> provides support of Windows Communications Framework.</li></ul>
 
-
-<h3><a shape="rect" name="Index-News"></a>News</h3>
+<h3 id="Index-News">News</h3>
 
     
 
@@ -94,17 +93,17 @@
 <div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/display/~tabish121">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: tabish121" title="tabish121">
+                <a shape="rect" class="userLogoLink" href="    /confluence/display/~tabish121 ">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.png" alt="User icon: tabish121" title="tabish121">
            </a>            </span>
             <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/display/~tabish121">Timothy Bish</a> posted on Oct 25, 2013</div>
                 <a shape="rect" class="blogHeading" href="2013/10/25/apachenmsactivemq-v161-released.html">Apache.NMS.ActiveMQ v1.6.1 released</a>
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~tabish121 ">Timothy Bish</a> posted on Oct 25, 2013</div>
             
         </div>
     
     <div class="wiki-content">
-        <p>A new bug fix release of the Apache.NMS.ActiveMQ library has been <a shape="rect" href="activemq-downloads.html" title="ActiveMQ Downloads">released</a>.  In this version we improved the discovery transport quite a bit and added in HTTP based discovery support.  </p>
+        <p>A new bug fix release of the Apache.NMS.ActiveMQ library has been <a shape="rect" href="activemq-downloads.html">released</a>.  In this version we improved the discovery transport quite a bit and added in HTTP based discovery support.  </p>
     </div>
     
         
@@ -114,12 +113,12 @@
 <div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/display/~tabish121">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: tabish121" title="tabish121">
+                <a shape="rect" class="userLogoLink" href="    /confluence/display/~tabish121 ">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.png" alt="User icon: tabish121" title="tabish121">
            </a>            </span>
             <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/display/~tabish121">Timothy Bish</a> posted on Jun 10, 2013</div>
                 <a shape="rect" class="blogHeading" href="2013/06/10/apachenmsactivemq-v160-released.html">Apache.NMS.ActiveMQ v1.6.0 Released</a>
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~tabish121 ">Timothy Bish</a> posted on Jun 10, 2013</div>
             
         </div>
     
@@ -134,17 +133,17 @@
 <div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/display/~tabish121">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: tabish121" title="tabish121">
+                <a shape="rect" class="userLogoLink" href="    /confluence/display/~tabish121 ">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.png" alt="User icon: tabish121" title="tabish121">
            </a>            </span>
             <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/display/~tabish121">Timothy Bish</a> posted on Aug 31, 2012</div>
-                <a shape="rect" class="blogHeading" href="2012/08/31/apachenmsstomp-v153-released.html">Apache.NMS.Stomp v1.5.3 released.</a>
+                <a shape="rect" class="blogHeading" href="/confluence/pages/viewpage.action?pageId=30149437">Apache.NMS.Stomp v1.5.3 released.</a>
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~tabish121 ">Timothy Bish</a> posted on Aug 31, 2012</div>
             
         </div>
     
     <div class="wiki-content">
-        <p>A new release of Apache.NMS.Stomp is out v1.5.3. This release has several important bug fixes in it, grab the binary distro on the <a shape="rect" href="stomp-downloads.html" title="Stomp Downloads">Apache.NMS.Stomp</a> Downloads page:</p>
+        <p>A new release of Apache.NMS.Stomp is out v1.5.3. This release has several important bug fixes in it, grab the binary distro on the <a shape="rect" href="stomp-downloads.html">Apache.NMS.Stomp</a> Downloads page:</p>
     </div>
     
         
@@ -154,44 +153,43 @@
 <div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="https://cwiki.apache.org/confluence/display/~tabish121">
-               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.gif" alt="User icon: tabish121" title="tabish121">
+                <a shape="rect" class="userLogoLink" href="    /confluence/display/~tabish121 ">
+               <img class="userLogo logo" src="https://cwiki.apache.org/confluence/images/icons/profilepics/default.png" alt="User icon: tabish121" title="tabish121">
            </a>            </span>
             <span class="blogHeading">
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="https://cwiki.apache.org/confluence/display/~tabish121">Timothy Bish</a> posted on May 04, 2012</div>
-                <a shape="rect" class="blogHeading" href="2012/05/04/apachenmsactivemq-v155-released.html">Apache.NMS.ActiveMQ v1.5.5 released.</a>
+                <a shape="rect" class="blogHeading" href="/confluence/pages/viewpage.action?pageId=27845840">Apache.NMS.ActiveMQ v1.5.5 released.</a>
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~tabish121 ">Timothy Bish</a> posted on May 04, 2012</div>
             
         </div>
     
     <div class="wiki-content">
-        <p>A new release of Apache.NMS.ActiveMQ is out v1.5.5. This release has several important bug fixes in it, grab the binary distro on the <a shape="rect" href="download.html" title="Download">Apache.NMS.ActiveMQ Downloads</a> page:</p>
+        <p>A new release of Apache.NMS.ActiveMQ is out v1.5.5. This release has several important bug fixes in it, grab the binary distro on the <a shape="rect" href="download.html">Apache.NMS.ActiveMQ Downloads</a> page:</p>
     </div>
     
         
     </div>
     
 
-<h3><a shape="rect" name="Index-WorkingwithNMS"></a>Working with NMS </h3>
+<h3 id="Index-WorkingwithNMS">Working with NMS </h3>
 
 <p>To find out more about NMS, select from the following resources:</p>
-<ul><li><a shape="rect" href="download.html" title="Download">Download NMS</a></li><li><a shape="rect" href="source.html" title="Source">Get the Source Code</a></li><li><a shape="rect" href="building.html" title="Building">How to build NMS</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Documentation</a></li></ul>
-</div>
+<ul><li><a shape="rect" href="download.html">Download NMS</a></li><li><a shape="rect" href="source.html">Get the Source Code</a></li><li><a shape="rect" href="building.html">How to build NMS</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Documentation</a></li></ul></div>
         </td>
         <td valign="top">
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -204,15 +202,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Modified: websites/production/activemq/content/nms/msmq-build-notes.html
==============================================================================
--- websites/production/activemq/content/nms/msmq-build-notes.html (original)
+++ websites/production/activemq/content/nms/msmq-build-notes.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="apachenmsmsmq.html">Apache.NMS.MSMQ</a>&nbsp;&gt;&nbsp;<a href="msmq-build-notes.html">MSMQ Build Notes</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -78,17 +78,17 @@
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -101,15 +101,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Modified: websites/production/activemq/content/nms/msmq-downloads.html
==============================================================================
--- websites/production/activemq/content/nms/msmq-downloads.html (original)
+++ websites/production/activemq/content/nms/msmq-downloads.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="apachenmsmsmq.html">Apache.NMS.MSMQ</a>&nbsp;&gt;&nbsp;<a href="msmq-downloads.html">MSMQ Downloads</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -72,26 +72,23 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Description </th><th colspan="1" rowspan="1" class="confluenceTh"> Release Date </th><th colspan="1" rowspan="1" class="confluenceTh"> NMS API Rev </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="apachenms-msmq-v110.html" title="Apache.NMS MSMQ v1.1.0">Apache.NMS MSMQ v1.1.0</a> </td><td colspan="1" rowspan="1" class="confluenceTd"> 07/12/2009 </td><td colspan="1" rowspan="1" class="confluenceTd"> v1.1.0 </td></tr></tbody></table>
-</div>
-</div>
+<div class="wiki-content maincontent"><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Release Date </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> NMS API Rev </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <a shape="rect" href="apachenms-msmq-v110.html">Apache.NMS MSMQ v1.1.0</a> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> 07/12/2009 </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> v1.1.0 </p></td></tr></tbody></table></div></div>
         </td>
         <td valign="top">
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -104,15 +101,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Modified: websites/production/activemq/content/nms/msmq-examples.html
==============================================================================
--- websites/production/activemq/content/nms/msmq-examples.html (original)
+++ websites/production/activemq/content/nms/msmq-examples.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="apachenmsmsmq.html">Apache.NMS.MSMQ</a>&nbsp;&gt;&nbsp;<a href="msmq-examples.html">MSMQ Examples</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -78,17 +78,17 @@
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -101,15 +101,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Modified: websites/production/activemq/content/nms/msmq-faq.html
==============================================================================
--- websites/production/activemq/content/nms/msmq-faq.html (original)
+++ websites/production/activemq/content/nms/msmq-faq.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="apachenmsmsmq.html">Apache.NMS.MSMQ</a>&nbsp;&gt;&nbsp;<a href="msmq-faq.html">MSMQ FAQ</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -78,17 +78,17 @@
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -101,15 +101,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>

Modified: websites/production/activemq/content/nms/navigation.html
==============================================================================
--- websites/production/activemq/content/nms/navigation.html (original)
+++ websites/production/activemq/content/nms/navigation.html Wed Feb 12 18:21:44 2014
@@ -64,7 +64,7 @@
 <a href="index.html">Index</a>&nbsp;&gt;&nbsp;<a href="site.html">Site</a>&nbsp;&gt;&nbsp;<a href="navigation.html">Navigation</a>
           </div>
           <div id="site-quicklinks">
-<p><a shape="rect" href="download.html" title="Download">Download</a> | <a shape="rect" href="nms-api.html" title="NMS API">API</a> | <a shape="rect" href="source.html" title="Source">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
+<p><a shape="rect" href="download.html">Download</a> | <a shape="rect" href="nms-api.html">API</a> | <a shape="rect" href="source.html">Source</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Forums</a> | <a shape="rect" class="external-link" href="http://activemq.apache.org/support.html">Support</a></p>
           </div>
         </div>
 
@@ -72,17 +72,17 @@
   <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<div class="wiki-content maincontent"><h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -95,31 +95,30 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
-</div>
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul></div>
         </td>
         <td valign="top">
           <div class="navigation">
             <div class="navigation_top">
               <div class="navigation_bottom">
-<h3><a shape="rect" name="Navigation-Overview"></a><a shape="rect" href="overview.html" title="Overview">Overview</a></h3>
+<h3 id="Navigation-Overview"><a shape="rect" href="overview.html">Overview</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" title="Index">Home</a></li><li><a shape="rect" href="faq.html" title="FAQ">FAQ</a></li><li><a shape="rect" href="download.html" title="Download">Download</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="index.html">Home</a></li><li><a shape="rect" href="faq.html">FAQ</a></li><li><a shape="rect" href="download.html">Download</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-UsingNMS"></a><a shape="rect" href="using-nms.html" title="Using NMS">Using NMS</a></h3>
+<h3 id="Navigation-UsingNMS"><a shape="rect" href="using-nms.html">Using NMS</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="apachenms.html" title="Apache.NMS">NMS Overview</a></li><li><a shape="rect" href="nms.html" title="NMS">Getting Started</a></li><li><a shape="rect" href="nms-api.html" title="NMS API">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html" title="Apache.NMS.ActiveMQ">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html" title="Apache.NMS.Stomp">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html" title="Apache.NMS.MSMQ">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html" title="Apache.NMS.EMS">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html" title="Apache.NMS.WCF">WCF</a></li></ul>
+<ul class="alternate"><li><a shape="rect" href="apachenms.html">NMS Overview</a></li><li><a shape="rect" href="nms.html">Getting Started</a></li><li><a shape="rect" href="nms-api.html">NMS API Reference</a></li><li><a shape="rect" href="apachenmsactivemq.html">ActiveMQ</a></li><li><a shape="rect" href="apachenmsstomp.html">Stomp</a></li><li><a shape="rect" href="apachenmsmsmq.html">MSMQ</a></li><li><a shape="rect" href="apachenmsems.html">Tibco EMS</a></li><li><a shape="rect" href="apachenmswcf.html">WCF</a></li></ul>
 
 
-<h3><a shape="rect" name="Navigation-Search"></a>Search</h3>
+<h3 id="Navigation-Search">Search</h3>
 <p>
 </p><form enctype="application/x-www-form-urlencoded" method="get" id="cse-search-box" action="http://www.google.com/cse">
   <div>
@@ -132,15 +131,14 @@
 <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
 
 
-<h3><a shape="rect" name="Navigation-Community"></a><a shape="rect" href="community.html" title="Community">Community</a></h3>
-
-<ul class="alternate" type="square"><li><a shape="rect" href="support.html" title="Support">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html" title="Articles">Articles</a></li><li><a shape="rect" href="site.html" title="Site">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
+<h3 id="Navigation-Community"><a shape="rect" href="community.html">Community</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="support.html">Support</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/contributing.html">Contributing</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/discussion-forums.html">Discussion Forums</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/mailing-lists.html">Mailing Lists</a></li><li><a shape="rect" class="external-link" href="irc://irc.codehaus.org/activemq" rel="nofollow">IRC</a></li><li><a shape="rect" href="articles.html">Articles</a></li><li><a shape="rect" href="site.html">Site</a></li><li><a shape="rect" class="external-link" href="http://activemq.apache.org/team.html">Team</a></li></ul>
 
-<h3><a shape="rect" name="Navigation-Developers"></a><a shape="rect" href="developers.html" title="Developers">Developers</a></h3>
 
-<ul class="alternate" type="square"><li><a shape="rect" href="source.html" title="Source">Source</a></li><li><a shape="rect" href="building.html" title="Building">Building</a></li></ul>
+<h3 id="Navigation-Developers"><a shape="rect" href="developers.html">Developers</a></h3>
 
+<ul class="alternate"><li><a shape="rect" href="source.html">Source</a></li><li><a shape="rect" href="building.html">Building</a></li></ul>
               </div>
             </div>
           </div>