You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2016/05/15 14:57:53 UTC

[07/12] qpid-site git commit: QPID-7265: regenerate qpid-java-6.0.2 release pages, with changes to integrate 0-10 JMS client docs and fix some link issues

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/content/releases/qpid-java-6.0.2/qpid-jms/examples/OptionParser.java.html
----------------------------------------------------------------------
diff --git a/content/releases/qpid-java-6.0.2/qpid-jms/examples/OptionParser.java.html b/content/releases/qpid-java-6.0.2/qpid-jms/examples/OptionParser.java.html
index 4550c5c..357e536 100644
--- a/content/releases/qpid-java-6.0.2/qpid-jms/examples/OptionParser.java.html
+++ b/content/releases/qpid-java-6.0.2/qpid-jms/examples/OptionParser.java.html
@@ -116,7 +116,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <div id="-middle-content">
           
 <h1>OptionParser.java</h1>
-<div class="highlight"><pre><span></span><span class="kn">package</span> <span class="nn">org.apache.qpid.example</span><span class="o">;</span>
+<div class="highlight"><pre><span class="kn">package</span> <span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">qpid</span><span class="o">.</span><span class="na">example</span><span class="o">;</span>
 
 <span class="kn">import</span> <span class="nn">java.util.ArrayList</span><span class="o">;</span>
 <span class="kn">import</span> <span class="nn">java.util.HashMap</span><span class="o">;</span>
@@ -233,7 +233,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
     <span class="kd">private</span> <span class="kt">void</span> <span class="nf">parseOpts</span><span class="o">(</span><span class="n">String</span><span class="o">[]</span> <span class="n">args</span><span class="o">)</span>
     <span class="o">{</span>   
         <span class="n">String</span> <span class="n">prevOpt</span> <span class="o">=</span> <span class="kc">null</span><span class="o">;</span>
-        <span class="k">for</span><span class="o">(</span><span class="n">String</span> <span class="n">op</span><span class="o">:</span> <span class="n">args</span><span class="o">)</span>
+        <span class="k">for</span><span class="o">(</span><span class="n">String</span> <span class="nl">op:</span> <span class="n">args</span><span class="o">)</span>
         <span class="o">{</span>
             <span class="c1">// covers both -h and --help formats</span>
             <span class="k">if</span> <span class="o">(</span><span class="n">op</span><span class="o">.</span><span class="na">startsWith</span><span class="o">(</span><span class="s">&quot;-&quot;</span><span class="o">))</span>
@@ -244,7 +244,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
                                             <span class="n">op</span><span class="o">.</span><span class="na">length</span><span class="o">());</span>
                 
                 <span class="kt">boolean</span> <span class="n">match</span> <span class="o">=</span> <span class="kc">false</span><span class="o">;</span>
-                <span class="k">for</span> <span class="o">(</span><span class="n">Option</span> <span class="n">option</span><span class="o">:</span> <span class="n">optDefs</span><span class="o">)</span>
+                <span class="k">for</span> <span class="o">(</span><span class="n">Option</span> <span class="nl">option:</span> <span class="n">optDefs</span><span class="o">)</span>
                 <span class="o">{</span>
                     
                     <span class="k">if</span> <span class="o">((</span><span class="n">op</span><span class="o">.</span><span class="na">startsWith</span><span class="o">(</span><span class="s">&quot;-&quot;</span><span class="o">)</span> <span class="o">&amp;&amp;</span> <span class="n">option</span><span class="o">.</span><span class="na">getShortForm</span><span class="o">()</span> <span class="o">!=</span> <span class="kc">null</span> <span class="o">&amp;&amp;</span> <span class="n">option</span><span class="o">.</span><span class="na">getShortForm</span><span class="o">().</span><span class="na">equals</span><span class="o">(</span><span class="n">key</span><span class="o">))</span> <span class="o">||</span>
@@ -279,7 +279,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
                     <span class="n">prevOpt</span> <span class="o">=</span> <span class="n">key</span><span class="o">;</span>
                 <span class="o">}</span>
             <span class="o">}</span>
-            <span class="k">else</span> <span class="k">if</span> <span class="o">(</span><span class="n">prevOpt</span> <span class="o">!=</span> <span class="kc">null</span><span class="o">)</span> <span class="c1">// this is to catch broker localhost:5672 instead broker=localhost:5672</span>
+            <span class="k">else</span> <span class="nf">if</span> <span class="o">(</span><span class="n">prevOpt</span> <span class="o">!=</span> <span class="kc">null</span><span class="o">)</span> <span class="c1">// this is to catch broker localhost:5672 instead broker=localhost:5672</span>
             <span class="o">{</span>
                 <span class="n">String</span> <span class="n">val</span> <span class="o">=</span> <span class="n">extractValue</span><span class="o">(</span><span class="n">op</span><span class="o">);</span>
                 <span class="k">if</span> <span class="o">(</span><span class="n">optMap</span><span class="o">.</span><span class="na">containsKey</span><span class="o">(</span><span class="n">prevOpt</span><span class="o">)</span> <span class="o">&amp;&amp;</span> <span class="o">!</span><span class="n">optMap</span><span class="o">.</span><span class="na">get</span><span class="o">(</span><span class="n">prevOpt</span><span class="o">).</span><span class="na">toString</span><span class="o">().</span><span class="na">equals</span><span class="o">(</span><span class="s">&quot;&quot;</span><span class="o">))</span>
@@ -295,7 +295,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
             <span class="k">else</span>
             <span class="o">{</span>
                 <span class="n">System</span><span class="o">.</span><span class="na">out</span><span class="o">.</span><span class="na">println</span><span class="o">(</span><span class="n">optMap</span><span class="o">);</span>
-                <span class="k">throw</span> <span class="k">new</span> <span class="n">IllegalArgumentException</span><span class="o">(</span><span class="n">op</span> <span class="o">+</span> <span class="s">&quot; is not a valid option&quot;</span><span class="o">);</span>
+                <span class="k">throw</span> <span class="k">new</span> <span class="nf">IllegalArgumentException</span><span class="o">(</span><span class="n">op</span> <span class="o">+</span> <span class="s">&quot; is not a valid option&quot;</span><span class="o">);</span>
             <span class="o">}</span>
         <span class="o">}</span>
     <span class="o">}</span>
@@ -306,7 +306,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <span class="o">{</span>
             <span class="k">if</span> <span class="o">(!</span><span class="n">op</span><span class="o">.</span><span class="na">endsWith</span><span class="o">(</span><span class="s">&quot;&#39;&quot;</span><span class="o">))</span> 
             <span class="o">{</span>
-                <span class="k">throw</span> <span class="k">new</span> <span class="n">IllegalArgumentException</span><span class="o">(</span><span class="s">&quot; The option &quot;</span> <span class="o">+</span> <span class="n">op</span> <span class="o">+</span> <span class="s">&quot; needs to be inside quotes&quot;</span><span class="o">);</span>
+                <span class="k">throw</span> <span class="k">new</span> <span class="nf">IllegalArgumentException</span><span class="o">(</span><span class="s">&quot; The option &quot;</span> <span class="o">+</span> <span class="n">op</span> <span class="o">+</span> <span class="s">&quot; needs to be inside quotes&quot;</span><span class="o">);</span>
             <span class="o">}</span>
             
             <span class="k">return</span> <span class="n">op</span><span class="o">.</span><span class="na">substring</span><span class="o">(</span><span class="mi">1</span><span class="o">,</span><span class="n">op</span><span class="o">.</span><span class="na">length</span><span class="o">()</span> <span class="o">-</span><span class="mi">1</span><span class="o">);</span>
@@ -328,7 +328,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <span class="o">{</span>
             <span class="k">return</span> <span class="o">(</span><span class="n">String</span><span class="o">)</span><span class="n">optMap</span><span class="o">.</span><span class="na">get</span><span class="o">(</span><span class="n">op</span><span class="o">.</span><span class="na">getShortForm</span><span class="o">());</span>
         <span class="o">}</span>
-        <span class="k">else</span> <span class="k">if</span> <span class="o">(</span><span class="n">optMap</span><span class="o">.</span><span class="na">containsKey</span><span class="o">(</span><span class="n">op</span><span class="o">.</span><span class="na">getLongForm</span><span class="o">()))</span>
+        <span class="k">else</span> <span class="nf">if</span> <span class="o">(</span><span class="n">optMap</span><span class="o">.</span><span class="na">containsKey</span><span class="o">(</span><span class="n">op</span><span class="o">.</span><span class="na">getLongForm</span><span class="o">()))</span>
         <span class="o">{</span>
             <span class="k">return</span> <span class="o">(</span><span class="n">String</span><span class="o">)</span><span class="n">optMap</span><span class="o">.</span><span class="na">get</span><span class="o">(</span><span class="n">op</span><span class="o">.</span><span class="na">getLongForm</span><span class="o">());</span>
         <span class="o">}</span>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/content/releases/qpid-java-6.0.2/qpid-jms/examples/Spout.java.html
----------------------------------------------------------------------
diff --git a/content/releases/qpid-java-6.0.2/qpid-jms/examples/Spout.java.html b/content/releases/qpid-java-6.0.2/qpid-jms/examples/Spout.java.html
index 8c049d7..46b6c06 100644
--- a/content/releases/qpid-java-6.0.2/qpid-jms/examples/Spout.java.html
+++ b/content/releases/qpid-java-6.0.2/qpid-jms/examples/Spout.java.html
@@ -116,7 +116,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <div id="-middle-content">
           
 <h1>Spout.java</h1>
-<div class="highlight"><pre><span></span><span class="kn">package</span> <span class="nn">org.apache.qpid.example</span><span class="o">;</span>
+<div class="highlight"><pre><span class="kn">package</span> <span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">qpid</span><span class="o">.</span><span class="na">example</span><span class="o">;</span>
 
 <span class="kn">import</span> <span class="nn">javax.jms.Connection</span><span class="o">;</span>
 <span class="kn">import</span> <span class="nn">javax.jms.Destination</span><span class="o">;</span>
@@ -208,7 +208,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <span class="k">if</span> <span class="o">(</span><span class="n">containsOp</span><span class="o">(</span><span class="n">MAP_ENTRY</span><span class="o">))</span>
         <span class="o">{</span>
             <span class="n">MapMessage</span> <span class="n">msg</span> <span class="o">=</span> <span class="n">ssn</span><span class="o">.</span><span class="na">createMapMessage</span><span class="o">();</span>
-            <span class="k">for</span> <span class="o">(</span><span class="n">String</span> <span class="n">pair</span><span class="o">:</span> <span class="n">getOp</span><span class="o">(</span><span class="n">MAP_ENTRY</span><span class="o">).</span><span class="na">split</span><span class="o">(</span><span class="s">&quot;,&quot;</span><span class="o">))</span>
+            <span class="k">for</span> <span class="o">(</span><span class="n">String</span> <span class="nl">pair:</span> <span class="n">getOp</span><span class="o">(</span><span class="n">MAP_ENTRY</span><span class="o">).</span><span class="na">split</span><span class="o">(</span><span class="s">&quot;,&quot;</span><span class="o">))</span>
             <span class="o">{</span>
                 <span class="n">msg</span><span class="o">.</span><span class="na">setString</span><span class="o">(</span><span class="n">pair</span><span class="o">.</span><span class="na">substring</span><span class="o">(</span><span class="mi">0</span><span class="o">,</span> <span class="n">pair</span><span class="o">.</span><span class="na">indexOf</span><span class="o">(</span><span class="sc">&#39;=&#39;</span><span class="o">)),</span>
                               <span class="n">pair</span><span class="o">.</span><span class="na">substring</span><span class="o">(</span><span class="n">pair</span><span class="o">.</span><span class="na">indexOf</span><span class="o">(</span><span class="sc">&#39;=&#39;</span><span class="o">)</span> <span class="o">+</span> <span class="mi">1</span><span class="o">));</span>
@@ -229,7 +229,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
     <span class="o">{</span>
         <span class="k">if</span><span class="o">(</span><span class="n">containsOp</span><span class="o">(</span><span class="n">MSG_PROPERTY</span><span class="o">))</span>
         <span class="o">{</span>
-            <span class="k">for</span> <span class="o">(</span><span class="n">String</span> <span class="n">pair</span><span class="o">:</span> <span class="n">getOp</span><span class="o">(</span><span class="n">MSG_PROPERTY</span><span class="o">).</span><span class="na">split</span><span class="o">(</span><span class="s">&quot;,&quot;</span><span class="o">))</span>
+            <span class="k">for</span> <span class="o">(</span><span class="n">String</span> <span class="nl">pair:</span> <span class="n">getOp</span><span class="o">(</span><span class="n">MSG_PROPERTY</span><span class="o">).</span><span class="na">split</span><span class="o">(</span><span class="s">&quot;,&quot;</span><span class="o">))</span>
             <span class="o">{</span>
                 <span class="n">m</span><span class="o">.</span><span class="na">setStringProperty</span><span class="o">(</span><span class="n">pair</span><span class="o">.</span><span class="na">substring</span><span class="o">(</span><span class="mi">0</span><span class="o">,</span> <span class="n">pair</span><span class="o">.</span><span class="na">indexOf</span><span class="o">(</span><span class="sc">&#39;=&#39;</span><span class="o">)),</span>
                               <span class="n">pair</span><span class="o">.</span><span class="na">substring</span><span class="o">(</span><span class="n">pair</span><span class="o">.</span><span class="na">indexOf</span><span class="o">(</span><span class="sc">&#39;=&#39;</span><span class="o">)</span> <span class="o">+</span> <span class="mi">1</span><span class="o">));</span>
@@ -242,7 +242,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <span class="n">String</span> <span class="n">u</span> <span class="o">=</span> <span class="s">&quot;Usage: spout [OPTIONS] &#39;ADDRESS&#39;&quot;</span><span class="o">;</span>
         <span class="n">String</span> <span class="n">d</span> <span class="o">=</span> <span class="s">&quot;Send messages to the specified address.&quot;</span><span class="o">;</span> 
             
-        <span class="k">new</span> <span class="n">Spout</span><span class="o">(</span><span class="n">args</span><span class="o">,</span><span class="n">u</span><span class="o">,</span><span class="n">d</span><span class="o">);</span>        
+        <span class="k">new</span> <span class="nf">Spout</span><span class="o">(</span><span class="n">args</span><span class="o">,</span><span class="n">u</span><span class="o">,</span><span class="n">d</span><span class="o">);</span>        
     <span class="o">}</span>
 <span class="o">}</span>
 </pre></div>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/content/releases/qpid-java-6.0.2/qpid-jms/examples/hello.properties.html
----------------------------------------------------------------------
diff --git a/content/releases/qpid-java-6.0.2/qpid-jms/examples/hello.properties.html b/content/releases/qpid-java-6.0.2/qpid-jms/examples/hello.properties.html
index f3813f2..1f7b05b 100644
--- a/content/releases/qpid-java-6.0.2/qpid-jms/examples/hello.properties.html
+++ b/content/releases/qpid-java-6.0.2/qpid-jms/examples/hello.properties.html
@@ -116,7 +116,7 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
         <div id="-middle-content">
           
 <h1>hello.properties</h1>
-<div class="highlight"><pre><span></span><span class="na">java.naming.factory.initial</span> <span class="o">=</span> <span class="s">org.apache.qpid.jndi.PropertiesFileInitialContextFactory</span>
+<div class="highlight"><pre><span class="na">java.naming.factory.initial</span> <span class="o">=</span> <span class="s">org.apache.qpid.jndi.PropertiesFileInitialContextFactory</span>
 
 <span class="c1"># register some connection factories</span>
 <span class="c1"># connectionfactory.[jndiname] = [ConnectionURL]</span>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/content/releases/qpid-java-6.0.2/qpid-jms/examples/index.html
----------------------------------------------------------------------
diff --git a/content/releases/qpid-java-6.0.2/qpid-jms/examples/index.html b/content/releases/qpid-java-6.0.2/qpid-jms/examples/index.html
index d1067a3..9bdaf14 100644
--- a/content/releases/qpid-java-6.0.2/qpid-jms/examples/index.html
+++ b/content/releases/qpid-java-6.0.2/qpid-jms/examples/index.html
@@ -133,8 +133,8 @@ https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
 <h2 id="more-information">More information</h2>
 
 <ul>
-<li><a href="http://svn.apache.org/repos/asf/qpid/java/branches/6.0.2/java/client/README.txt">README</a></li>
-<li><a href="http://svn.apache.org/repos/asf/qpid/java/branches/6.0.2/java/client/example/src/main/java/org/apache/qpid/example">Source location</a></li>
+<li><a href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/client/README.txt">README</a></li>
+<li><a href="http://svn.apache.org/repos/asf/qpid/java/tags/6.0.2/client/example/src/main/java/org/apache/qpid/example">Source location</a></li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/content/releases/qpid-java-6.0.2/release-notes.html
----------------------------------------------------------------------
diff --git a/content/releases/qpid-java-6.0.2/release-notes.html b/content/releases/qpid-java-6.0.2/release-notes.html
index 8907fda..f71004b 100644
--- a/content/releases/qpid-java-6.0.2/release-notes.html
+++ b/content/releases/qpid-java-6.0.2/release-notes.html
@@ -142,7 +142,7 @@ documentation, see the <a href="index.html">release overview</a>.</p>
 <li><a href="https://issues.apache.org/jira/browse/QPID-7156">QPID-7156</a> - Possible Java Broker crash if connection is formed whilst virtualhost is stopping</li>
 <li><a href="https://issues.apache.org/jira/browse/QPID-7181">QPID-7181</a> - [AMQP 1.0] Selector parsing error causes Java Broker to shutdown</li>
 <li><a href="https://issues.apache.org/jira/browse/QPID-7186">QPID-7186</a> - CancelledKeyException from the accepting thread during Broker shutdown</li>
-<li><a href="https://issues.apache.org/jira/browse/QPID-7189">QPID-7189</a> - [Java Client 0-8..0-10] Client fails to create delegate for AMQP 0.9.1 in response to broker supported protocol received during protocol negotiation</li>
+<li><a href="https://issues.apache.org/jira/browse/QPID-7189">QPID-7189</a> - [Java Client 0-8..0-10] Client fails to negotiate AMQP connection after downgrading from 0-10 to 0-91</li>
 </ul>
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/index.md
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/index.md b/input/releases/qpid-java-6.0.2/index.md
index aff89a9..a28b34a 100644
--- a/input/releases/qpid-java-6.0.2/index.md
+++ b/input/releases/qpid-java-6.0.2/index.md
@@ -59,7 +59,7 @@ files you download.
  - [Installing Qpid Java](java-broker/book/Java-Broker-Installation.html)
  - [Java broker book](java-broker/book/index.html)
  - [API reference](http://docs.oracle.com/javaee/1.4/api/javax/jms/package-summary.html)
-;; - [Using the Qpid JMS client (AMQP 0-10)](programming/book/QpidJMS.html) ([PDF](programming/programming-book.pdf))
+ - [Using the Qpid JMS client (AMQP 0-10)](jms-client-0-10/book/index.html)
  - [Using the Qpid JMS client (AMQP 0-9-1, 0-9, 0-8)](jms-client-0-8/book/index.html)
  - [JMS examples (AMQP 0-10)](qpid-jms/examples/index.html)
  - [JMS examples (AMQP 0-9-1, 0-9, 0-8)](jms-client-0-8/book/JMS-Client-0-8-Examples.html)

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Environment-Variables.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Environment-Variables.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Environment-Variables.html.in
index 4654bed..85471ff 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Environment-Variables.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Environment-Variables.html.in
@@ -7,8 +7,8 @@
               absolute path. This is used to determine the location of Qpid's dependency JARs and
               some configuration files.</p>
             <p>Typically the value of this variable will look similar to
-                <code class="literal">c:\qpid\qpid-broker\\6.0.3-SNAPSHOT</code> (Windows) or
-                <code class="literal">/usr/local/qpid/qpid-broker/6.0.3-SNAPSHOT</code> (Unix). The
+                <code class="literal">c:\qpid\qpid-broker\\6.0.2</code> (Windows) or
+                <code class="literal">/usr/local/qpid/qpid-broker/6.0.2</code> (Unix). The
               installation prefix will differ from installation to installation. </p>
             <p>If not set, a value for <code class="literal">QPID_HOME</code> is derived from the location
               of the script itself.</p>

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Operation-Logging.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Operation-Logging.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Operation-Logging.html.in
index 78d5f8c..3295d83 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Operation-Logging.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Appendix-Operation-Logging.html.in
@@ -16,7 +16,7 @@
     user id used by the client (myapp1), their IP, ephemeral port number and the name of the virtual
     host. The message text itself gives us further details about the connection: the client id, the
     protocol version in used, and details of the client's qpid library.</p><pre class="screen">[con:8(myapp1@/127.0.0.1:52851/default)] CON-1001 : Open : Destination : AMQP(127.0.0.1:5672) :
-    Protocol Version : 0-10 : Client ID : myapp1 : Client Version : 6.0.3-SNAPSHOT : Client Product : qpid</pre><p><code class="literal"><a class="link" href="Java-Broker-Appendix-Operation-Logging.html#Java-Broker-Appendix-Operation-Logging-Message-QUE-1001">QUE-1001</a></code> is used when a queue is created. The connection actor
+    Protocol Version : 0-10 : Client ID : myapp1 : Client Version : 6.0.2 : Client Product : qpid</pre><p><code class="literal"><a class="link" href="Java-Broker-Appendix-Operation-Logging.html#Java-Broker-Appendix-Operation-Logging-Message-QUE-1001">QUE-1001</a></code> is used when a queue is created. The connection actor
       <code class="literal">con</code> tells us details of the connection performing the queue creation: the
     user id used by the client (myapp1), the IP, ephemeral port number and the name of the virtual
     host. The queue subject tells use the queue's name (myqueue) and the virtualhost. The message

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Backup-And-Recovery-Virtualhost-Node.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Backup-And-Recovery-Virtualhost-Node.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Backup-And-Recovery-Virtualhost-Node.html.in
index d034bf0..bef9a71 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Backup-And-Recovery-Virtualhost-Node.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Backup-And-Recovery-Virtualhost-Node.html.in
@@ -8,8 +8,8 @@
         running.</p><p><code class="literal">backup.sh</code> script invokes
           <code class="classname">org.apache.qpid.server.store.berkeleydb.BDBBackup</code> to do the
         job.</p><p>You can also run this class from command line like in an example below:</p><div class="example"><a id="d0e6637"></a><p class="title"><strong>Example&#160;11.1.&#160;Performing store backup by using <code class="classname">BDBBackup</code> class
-          directly</strong></p><div class="example-contents"><div class="cmdsynopsis"><p><code class="command">java</code>   -cp qpid-bdbstore-6.0.3-SNAPSHOT.jar   org.apache.qpid.server.store.berkeleydb.BDBBackup <br />  -fromdir <em class="replaceable"><code>${QPID_WORK}/&lt;nodename&gt;/config</code></em>   -todir <em class="replaceable"><code>path/to/backup/folder</code></em> </p></div></div></div><br class="example-break" /><p>In the example above BDBBackup utility is called from
-        qpid-bdbstore-6.0.3-SNAPSHOT.jar to backup the store at
+          directly</strong></p><div class="example-contents"><div class="cmdsynopsis"><p><code class="command">java</code>   -cp qpid-bdbstore-6.0.2.jar   org.apache.qpid.server.store.berkeleydb.BDBBackup <br />  -fromdir <em class="replaceable"><code>${QPID_WORK}/&lt;nodename&gt;/config</code></em>   -todir <em class="replaceable"><code>path/to/backup/folder</code></em> </p></div></div></div><br class="example-break" /><p>In the example above BDBBackup utility is called from
+        qpid-bdbstore-6.0.2.jar to backup the store at
           <code class="literal">${QPID_WORK}/&lt;nodename&gt;/config</code> and copy store logs into
           <code class="literal">path/to/backup/folder</code>.</p><p>Linux and Unix users can take advantage of <code class="literal">backup.sh</code> bash script by
         running this script in a similar way.</p><div class="example"><a id="d0e6672"></a><p class="title"><strong>Example&#160;11.2.&#160;Performing store backup by using <code class="classname">backup.sh</code> bash script</strong></p><div class="example-contents"><div class="cmdsynopsis"><p><code class="command">backup.sh</code>   -fromdir <em class="replaceable"><code>${QPID_WORK}/&lt;nodename&gt;/config</code></em>   -todir <em class="replaceable"><code>path/to/backup/folder</code></em> </p></div></div></div><br class="example-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="Java-Broker-Backup-And-Recovery-Virtualhost-Node-BDB-HA"></a>11.2.2.&#160;BDB-HA</h3></div></div></div><p>See <a class="xref" href="Java-Broker-Backup-And-Recovery-Virtualhost-Node.html#Java-Broker-Backup-And-Recovery-Virtualhost-Node-BDB" title="11.2.1.&#160;BDB">Section&#160;11.2.1, &#8220;BDB&#8221;</a></p></div><div class="section"><div class="titlepage"><div
 ><div><h3 class="title"><a id="Java-Broker-Backup-And-Recovery-Virtualhost-Node-Derby"></a>11.2.3.&#160;Derby</h3></div></div></div><p>Not yet supported</p></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="Java-Broker-Backup-And-Recovery-Virtualhost-Node-JDBC"></a>11.2.4.&#160;JDBC</h3></div></div></div><p>The responsibility for backup is delegated to the database server itself. See the

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Unix.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Unix.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Unix.html.in
index cb0692b..b24d60f 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Unix.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Unix.html.in
@@ -1,6 +1,6 @@
 <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">3.3.&#160;Starting/Stopping the broker on Unix</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="Java-Broker-Getting-Started-Starting-Stopping-Windows.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;3.&#160;Getting Started</th><td align="right" width="20%">&#160;<a accesskey="n" href="Java-Broker-Getting-Started-Logging.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="Java-Broker-Getting-Started-Starting-Stopping-Unix"></a>3.3.&#160;Starting/Stopping the broker on Unix</h2></div></div></div><p>Firstly change to the installation directory used during the <a class="link" href="Java-Broker-Installation-InstallationUnix.html" title="2.5.&#160;Installation on UNIX platforms">installation</a>
       and ensure that the <a class="link" href="Java-Broker-Installation-InstallationUnix.html#Java-Broker-Installation-InstallationUnix-SettingQPIDWORK" title="2.5.1.&#160;Setting the working directory">QPID_WORK environment variable is set</a>.</p><p>Now use the <span class="command"><strong>qpid-server</strong></span> script to start the server:</p><pre class="programlisting">bin/qpid-server</pre><p>Output similar to the following will be seen:</p><pre class="screen">[Broker] BRK-1006 : Using configuration : /var/qpidwork/config.json
-[Broker] BRK-1001 : Startup : Version: 6.0.3-SNAPSHOT Build: exported
+[Broker] BRK-1001 : Startup : Version: 6.0.2 Build: exported
 [Broker] BRK-1010 : Platform : JVM : Oracle Corporation version: 1.7.0_79-b15 OS : Mac OS X version: 10.10.5 arch: x86_64 cores: 4
 [Broker] BRK-1011 : Maximum Memory : Heap : 518,979,584 bytes Direct : 1,610,612,736 bytes
 [Broker] BRK-1002 : Starting : Listening on TCP port 5672

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Windows.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Windows.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Windows.html.in
index e90b2cb..32cf75c 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Windows.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Getting-Started-Starting-Stopping-Windows.html.in
@@ -1,6 +1,6 @@
 <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">3.2.&#160;Starting/Stopping the broker on Windows</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="Java-Broker-Getting-Started.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;3.&#160;Getting Started</th><td align="right" width="20%">&#160;<a accesskey="n" href="Java-Broker-Getting-Started-Starting-Stopping-Unix.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="Java-Broker-Getting-Started-Starting-Stopping-Windows"></a>3.2.&#160;Starting/Stopping the broker on Windows</h2></div></div></div><p>Firstly change to the installation directory used during the <a class="link" href="Java-Broker-Installation-InstallationWindows.html" title="2.4.&#160;Installation on Windows">installation</a>
       and ensure that the <a class="link" href="Java-Broker-Installation-InstallationWindows.html#Java-Broker-Installation-InstallationWindows-SettingQPIDWORK" title="2.4.1.&#160;Setting the working directory">QPID_WORK environment variable is set</a>.</p><p>Now use the <span class="command"><strong>qpid-server.bat</strong></span> to start the server</p><pre class="programlisting">bin\qpid-server.bat</pre><p>Output similar to the following will be seen:</p><pre class="screen">[Broker] BRK-1006 : Using configuration : C:\qpidwork\config.json
-[Broker] BRK-1001 : Startup : Version: 6.0.3-SNAPSHOT Build: 1478262
+[Broker] BRK-1001 : Startup : Version: 6.0.2 Build: 1478262
 [Broker] BRK-1010 : Platform : JVM : Oracle Corporation version: 1.7.0_79-b15 OS : Windows 7 version: 6.1 arch: x86 cores: 4
 [Broker] BRK-1011 : Maximum Memory : Heap : 518,979,584 bytes Direct : 1,610,612,736 bytes
 [Broker] BRK-1002 : Starting : Listening on TCP port 5672

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationUnix.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationUnix.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationUnix.html.in
index 9307351..5b38747 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationUnix.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationUnix.html.in
@@ -3,10 +3,10 @@
       Qpid JARs and configuration files. It need not be the same location as the work directory used
       for the persistent message store or the log file (you will choose this location later). For
       the remainder this example we will assume that location /usr/local/qpid has been
-      chosen.</p><p>Next extract the qpid-broker-6.0.3-SNAPSHOT-bin.tgz package into the directory.</p><pre class="programlisting">mkdir /usr/local/qpid
+      chosen.</p><p>Next extract the qpid-broker-6.0.2-bin.tgz package into the directory.</p><pre class="programlisting">mkdir /usr/local/qpid
 cd /usr/local/qpid
-tar xvzf qpid-broker-6.0.3-SNAPSHOT-bin.tgz</pre><p>The extraction of the broker package will have created a directory
-      qpid-broker/6.0.3-SNAPSHOT within /usr/local/qpid</p><pre class="screen">ls -la qpid-broker/6.0.3-SNAPSHOT/
+tar xvzf qpid-broker-6.0.2-bin.tgz</pre><p>The extraction of the broker package will have created a directory
+      qpid-broker/6.0.2 within /usr/local/qpid</p><pre class="screen">ls -la qpid-broker/6.0.2/
 total 56
 drwxrwxr-x. 5 alex alex  4096 Nov 25 11:43 .
 drwxrwxr-x. 3 alex alex  4096 Nov 25 11:43 ..

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationWindows.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationWindows.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationWindows.html.in
index c3da534..379117a 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationWindows.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Installation-InstallationWindows.html.in
@@ -2,11 +2,11 @@
     </p><p>Now chose a directory for Qpid broker installation. This directory will be used for the
       Qpid JARs and configuration files. It need not be the same location as the work directory used
       for the persistent message store or the log file (you will choose this location later). For
-      the remainder this example we will assume that location c:\qpid has been chosen.</p><p>Next extract the qpid-broker-6.0.3-SNAPSHOT-bin.zip package into the directory, using either
+      the remainder this example we will assume that location c:\qpid has been chosen.</p><p>Next extract the qpid-broker-6.0.2-bin.zip package into the directory, using either
       the zip file handling offered by Windows (right click the file and select 'Extract All') or a
       third party tool of your choice.</p><p>The extraction of the broker package will have created a directory
-      qpid-broker\\6.0.3-SNAPSHOT within c:\qpid</p><pre class="screen">
- Directory of c:\qpid\qpid-broker\\6.0.3-SNAPSHOT
+      qpid-broker\\6.0.2 within c:\qpid</p><pre class="screen">
+ Directory of c:\qpid\qpid-broker\\6.0.2
 
 25/11/2015  11:29    &lt;DIR&gt;          .
 25/11/2015  11:29    &lt;DIR&gt;          ..

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html.in
index 72885d9..72ec037 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html.in
@@ -1,5 +1,5 @@
 <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">E.2.&#160;Installing External JDBC Driver</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="Java-Broker-Miscellaneous.html">Prev</a>&#160;</td><th align="center" width="60%">Appendix&#160;E.&#160;Miscellaneous</th><td align="right" width="20%">&#160;<a accesskey="n" href="Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="Java-Broker-Miscellaneous-Installing-External-JDBC-Driver"></a>E.2.&#160;Installing External JDBC Driver</h2></div></div></div><p>In order to use a JDBC Virtualhost Node or a JDBC Virtualhost, you must make the
       Database's JDBC 4.0 compatible drivers available on the Broker's classpath. To do this copy
       the driver's JAR file into the <code class="literal">${QPID_HOME}/lib</code> folder.</p><pre class="programlisting">Unix:
-cp <code class="literal">driver</code>.jar qpid-broker-6.0.3-SNAPSHOT/lib</pre><pre class="programlisting">Windows:
-copy <code class="literal">driver</code>.jar qpid-broker-6.0.3-SNAPSHOT\lib</pre></div><div class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" href="Java-Broker-Miscellaneous.html">Prev</a>&#160;</td><td align="center" width="20%"><a accesskey="u" href="Java-Broker-Miscellaneous.html">Up</a></td><td align="right" width="40%">&#160;<a accesskey="n" href="Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html">Next</a></td></tr><tr><td align="left" valign="top" width="40%">Appendix&#160;E.&#160;Miscellaneous&#160;</td><td align="center" width="20%"><a accesskey="h" href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" valign="top" width="40%">&#160;E.3.&#160;Installing Oracle BDB JE</td></tr></table></div></div>
\ No newline at end of file
+cp <code class="literal">driver</code>.jar qpid-broker-6.0.2/lib</pre><pre class="programlisting">Windows:
+copy <code class="literal">driver</code>.jar qpid-broker-6.0.2\lib</pre></div><div class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" href="Java-Broker-Miscellaneous.html">Prev</a>&#160;</td><td align="center" width="20%"><a accesskey="u" href="Java-Broker-Miscellaneous.html">Up</a></td><td align="right" width="40%">&#160;<a accesskey="n" href="Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html">Next</a></td></tr><tr><td align="left" valign="top" width="40%">Appendix&#160;E.&#160;Miscellaneous&#160;</td><td align="center" width="20%"><a accesskey="h" href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" valign="top" width="40%">&#160;E.3.&#160;Installing Oracle BDB JE</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html.in b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html.in
index 8324552..418c95f 100644
--- a/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html.in
+++ b/input/releases/qpid-java-6.0.2/java-broker/book/Java-Broker-Miscellaneous-Installing-Oracle-BDB-JE.html.in
@@ -3,5 +3,5 @@
     </p><p> The download has a name in the form je-5.0.104.tar.gz. It is
       recommended that you confirm the integrity of the download by verifying the MD5. </p><p>Copy the je-5.0.104.jar from within the release into
         <code class="literal">${QPID_HOME}/lib</code> folder.</p><pre class="programlisting">Unix:
-cp je-5.0.104.jar qpid-broker-6.0.3-SNAPSHOT/lib</pre><pre class="programlisting">Windows:
-copy je-5.0.104.jar qpid-broker-6.0.3-SNAPSHOT\lib</pre></div><div class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" href="Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html">Prev</a>&#160;</td><td align="center" width="20%"><a accesskey="u" href="Java-Broker-Miscellaneous.html">Up</a></td><td align="right" width="40%">&#160;</td></tr><tr><td align="left" valign="top" width="40%">E.2.&#160;Installing External JDBC Driver&#160;</td><td align="center" width="20%"><a accesskey="h" href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" valign="top" width="40%">&#160;</td></tr></table></div></div>
\ No newline at end of file
+cp je-5.0.104.jar qpid-broker-6.0.2/lib</pre><pre class="programlisting">Windows:
+copy je-5.0.104.jar qpid-broker-6.0.2\lib</pre></div><div class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" href="Java-Broker-Miscellaneous-Installing-External-JDBC-Driver.html">Prev</a>&#160;</td><td align="center" width="20%"><a accesskey="u" href="Java-Broker-Miscellaneous.html">Up</a></td><td align="right" width="40%">&#160;</td></tr><tr><td align="left" valign="top" width="40%">E.2.&#160;Installing External JDBC Driver&#160;</td><td align="center" width="20%"><a accesskey="h" href="AMQP-Messaging-Broker-Java-Book.html">Home</a></td><td align="right" valign="top" width="40%">&#160;</td></tr></table></div></div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Book.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Book.html.in b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Book.html.in
new file mode 100644
index 0000000..048cbeb
--- /dev/null
+++ b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Book.html.in
@@ -0,0 +1 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">Qpid AMQP 0-10 JMS Client</th></tr><tr><td align="left" width="20%">&#160;</td><th align="center" width="60%">&#160;</th><td align="right" width="20%">&#160;<a accesskey="n" href="JMS-Client-0-10-Example.html">Next</a></td></tr></table><hr /></div><div class="book"><div class="titlepage"><div><div><h1 class="title"><a id="d0e2"></a>Qpid AMQP 0-10 JMS Client</h1></div></div><hr /></div><div class="toc"><p><strong>Table of Contents</strong></p><dl class="toc"><dt><span class="chapter"><a href="JMS-Client-0-10-Example.html">1. HelloWorld Example</a></span></dt><dt><span class="chapter"><a href="JMS-Client-0-10-Configuring.html">2. Configuring the JMS Client</a></span></dt><dd><dl><dt><span class="section"><a href="JMS-Client-0-10-Configuring.html#JMS-Client-0-10-Configuring-Overview">2.1. Overview</a></span></dt><dt><span class="section"><a href="JMS-Client-0-1
 0-Configuring-JNDI.html">2.2. JNDI Properties</a></span></dt><dd><dl><dt><span class="section"><a href="JMS-Client-0-10-Configuring-JNDI.html#d0e159">2.2.1. Properties File Format</a></span></dt><dt><span class="section"><a href="JMS-Client-0-10-Configuring-JNDI.html#JMS-Client-0-10-Configuring-JNDI-Connection-URL">2.2.2. Connection URLs</a></span></dt></dl></dd><dt><span class="section"><a href="JMS-Client-0-10-Configuring-JVM-Properties.html">2.3. JVM Properties</a></span></dt><dt><span class="section"><a href="JMS-Client-0-10-Configuring-Addresses.html">2.4. Addresses</a></span></dt><dd><dl><dt><span class="section"><a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1379">2.4.1. Address Strings</a></span></dt><dt><span class="section"><a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1403">2.4.2. Subjects</a></span></dt><dt><span class="section"><a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1579">2.4.3. Address String Options</a></span></dt><dt><span class="sect
 ion"><a href="JMS-Client-0-10-Configuring-Addresses.html#section-address-string-bnf">2.4.4. Address String Grammar</a></span></dt></dl></dd><dt><span class="section"><a href="JMS-Client-0-10-Configuring-Logging.html">2.5. Logging</a></span></dt></dl></dd><dt><span class="chapter"><a href="JMS-Client-0-10-Miscellaneous.html">3. Miscellaneous</a></span></dt><dd><dl><dt><span class="section"><a href="JMS-Client-0-10-Miscellaneous.html#JMS-Client-0-10-Miscellaneous-Message-Properties">3.1. Java JMS Message Properties</a></span></dt><dt><span class="section"><a href="JMS-Client-0-10-Miscellaneous-MapMessages.html">3.2. JMS MapMessage Types</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><strong>List of Tables</strong></p><dl><dt>2.1. <a href="JMS-Client-0-10-Configuring-JNDI.html#d0e171">JNDI Properties syntax</a></dt><dt>2.2. <a href="JMS-Client-0-10-Configuring-JNDI.html#d0e234">Connection URL Properties</a></dt><dt>2.3. <a href="JMS-Client-0-10-Configuring-JNDI.html
 #d0e380">Broker List Options</a></dt><dt>2.4. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e548">Config Options For Connection Behaviour</a></dt><dt>2.5. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e610">Config Options For Session Behaviour</a></dt><dt>2.6. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e668">Config Options For Consumer Behaviour</a></dt><dt>2.7. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e742">Config Options For Producer Behaviour</a></dt><dt>2.8. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e772">Config Options For Threading</a></dt><dt>2.9. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e812">Config Options For I/O</a></dt><dt>2.10. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e932">Config Options For Security</a></dt><dt>2.11. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e1006">Config Options For Security - Standard JVM properties needed when using GSSA
 PI as the SASL mechanism.</a></dt><dt>2.12. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e1051">Config Options For Security - Using SSL for securing connections or using EXTERNAL as the SASL mechanism.</a></dt><dt>2.13. <a href="JMS-Client-0-10-Configuring-JVM-Properties.html#d0e1116">Config Options For Security - Standard JVM properties needed when Using SSL for securing connections or using EXTERNAL as the SASL mechanism.</a></dt><dt>2.14. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1794">Address String Options</a></dt><dt>2.15. <a href="JMS-Client-0-10-Configuring-Addresses.html#table-node-properties">Node Properties</a></dt><dt>2.16. <a href="JMS-Client-0-10-Configuring-Addresses.html#table-link-properties">Link Properties</a></dt><dt>3.1. <a href="JMS-Client-0-10-Miscellaneous.html#d0e2097">Java JMS Mapping to AMQP 0-10 Message Properties</a></dt><dt>3.2. <a href="JMS-Client-0-10-Miscellaneous-MapMessages.html#table-Java-Maps">Java Datatypes in Maps</a>
 </dt></dl></div><div class="list-of-examples"><p><strong>List of Examples</strong></p><dl><dt>1.1. <a href="JMS-Client-0-10-Example.html#d0e12">"Hello world!" in Java</a></dt><dt>1.2. <a href="JMS-Client-0-10-Example.html#d0e80">JNDI Properties File for "Hello world!" example</a></dt><dt>2.1. <a href="JMS-Client-0-10-Configuring-JNDI.html#d0e164">JNDI Properties File</a></dt><dt>2.2. <a href="JMS-Client-0-10-Configuring-JNDI.html#d0e363">Broker Lists</a></dt><dt>2.3. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1276">Queues</a></dt><dt>2.4. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1310">Topics</a></dt><dt>2.5. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1417">Using subjects</a></dt><dt>2.6. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1514">Subjects with multi-word keys</a></dt><dt>2.7. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1636">Assertions on Nodes</a></dt><dt>2.8. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1
 672">Creating a Queue Automatically</a></dt><dt>2.9. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1706">Browsing a Queue</a></dt><dt>2.10. <a href="JMS-Client-0-10-Configuring-Addresses.html#d0e1754">Using the XML Exchange</a></dt><dt>2.11. <a href="JMS-Client-0-10-Configuring-Logging.html#d0e2067">log4j Logging Properties</a></dt><dt>3.1. <a href="JMS-Client-0-10-Miscellaneous-MapMessages.html#d0e2192">Sending a Java JMS MapMessage</a></dt></dl></div></div><div class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%">&#160;</td><td align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a accesskey="n" href="JMS-Client-0-10-Example.html">Next</a></td></tr><tr><td align="left" valign="top" width="40%">&#160;</td><td align="center" width="20%">&#160;</td><td align="right" valign="top" width="40%">&#160;Chapter&#160;1.&#160;HelloWorld Example</td></tr></table></div></div>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org