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-Example.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Example.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Example.html.in
new file mode 100644
index 0000000..f8528bc
--- /dev/null
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Example.html.in
@@ -0,0 +1,78 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">Chapter&#160;1.&#160;HelloWorld 
Example</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="JMS-Client-0-10-Book.html">Prev</a>&#160;</td><th align="center" 
width="60%">&#160;</th><td align="right" width="20%">&#160;<a accesskey="n" 
href="JMS-Client-0-10-Configuring.html">Next</a></td></tr></table><hr 
/></div><div class="chapter"><div class="titlepage"><div><div><h1 
class="title"><a 
id="JMS-Client-0-10-Example"></a>Chapter&#160;1.&#160;HelloWorld 
Example</h1></div></div></div><p>The following program shows how to send and 
receive a
+      message using the Qpid AMQP 0-10 JMS client. JMS programs typically use
+      JNDI to obtain connection factory and destination objects which
+      the application needs. In this way the configuration is kept
+      separate from the application code itself.</p><p>In this example, we 
create a JNDI context using a
+      properties file, use the context to lookup a connection factory,
+      create and start a connection, create a session, and lookup a
+      destination from the JNDI context. Then we create a producer and
+      a consumer, send a message with the producer and receive it with
+      the consumer. This code should be straightforward for anyone
+      familiar with Java JMS.</p><div class="example"><a id="d0e12"></a><p 
class="title"><strong>Example&#160;1.1.&#160;"Hello world!" in 
Java</strong></p><div class="example-contents"><pre class="programlisting" 
xml:lang="java">
+package org.apache.qpid.example.jmsexample.hello;
+
+import javax.jms.*;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import java.util.Properties;
+
+public class Hello {
+
+    public Hello() {
+    }
+
+    public static void main(String[] args) {
+        Hello producer = new Hello();
+        producer.runTest();
+    }
+
+    private void runTest() {
+        try {
+            Properties properties = new Properties();
+            
properties.load(this.getClass().getResourceAsStream("hello.properties"));  <a 
class="co" href="JMS-Client-0-10-Example.html#callout-java-properties" 
id="hello-java-properties"><span><img alt="1" border="0" 
src="images/callouts/1.png" /></span></a>
+            Context context = new InitialContext(properties);   <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-context" 
id="hello-java-context"><span><img alt="2" border="0" 
src="images/callouts/2.png" /></span></a>
+
+            ConnectionFactory connectionFactory
+              = (ConnectionFactory) context.lookup("qpidConnectionfactory"); 
<a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-connection-factory" 
id="hello-java-connection-factory"><span><img alt="3" border="0" 
src="images/callouts/3.png" /></span></a>
+            Connection connection = connectionFactory.createConnection();  <a 
class="co" href="JMS-Client-0-10-Example.html#callout-java-connection" 
id="hello-java-connection"><span><img alt="4" border="0" 
src="images/callouts/4.png" /></span></a>
+            connection.start();  <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-start" 
id="hello-java-start"><span><img alt="5" border="0" src="images/callouts/5.png" 
/></span></a>
+
+            Session 
session=connection.createSession(false,Session.AUTO_ACKNOWLEDGE);<a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-session" 
id="hello-java-session"><span><img alt="6" border="0" 
src="images/callouts/6.png" /></span></a>
+            Destination destination = (Destination) 
context.lookup("topicExchange");  <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-destination" 
id="hello-java-destination"><span><img alt="7" border="0" 
src="images/callouts/7.png" /></span></a>
+
+            MessageProducer messageProducer = 
session.createProducer(destination);  <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-producer" 
id="hello-java-producer"><span><img alt="8" border="0" 
src="images/callouts/8.png" /></span></a>
+            MessageConsumer messageConsumer = 
session.createConsumer(destination);  <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-consumer" 
id="hello-java-consumer"><span><img alt="9" border="0" 
src="images/callouts/9.png" /></span></a>
+
+            TextMessage message = session.createTextMessage("Hello world!");
+            messageProducer.send(message);
+
+            message = (TextMessage)messageConsumer.receive();    <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-receive" 
id="hello-java-receive"><span><img alt="10" border="0" 
src="images/callouts/10.png" /></span></a>
+            System.out.println(message.getText());
+
+            connection.close();  <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-close" 
id="hello-java-close"><span><img alt="11" border="0" 
src="images/callouts/11.png" /></span></a>
+            context.close();   <a class="co" 
href="JMS-Client-0-10-Example.html#callout-java-jndi-close" 
id="hello-java-jndi-close"><span><img alt="12" border="0" 
src="images/callouts/12.png" /></span></a>
+        }
+        catch (Exception exp) {
+            exp.printStackTrace();
+        }
+    }
+}
+</pre></div></div><br class="example-break" /><div class="calloutlist"><table 
border="0" summary="Callout list"><tr><td align="left" valign="top" 
width="5%"><p><a id="callout-java-properties"></a><a 
href="#hello-java-properties"><span><img alt="1" border="0" 
src="images/callouts/1.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Loads the JNDI properties file, which specifies connection 
properties, queues, topics, and addressing options. See below for further 
details.</p></td></tr><tr><td align="left" valign="top" width="5%"><p><a 
id="callout-java-context"></a><a href="#hello-java-context"><span><img alt="2" 
border="0" src="images/callouts/2.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Creates the JNDI initial context.</p></td></tr><tr><td 
align="left" valign="top" width="5%"><p><a 
id="callout-java-connection-factory"></a><a 
href="#hello-java-connection-factory"><span><img alt="3" border="0" 
src="images/callouts/3.png" /></span></a> </p></td><td align="le
 ft" valign="top"><p>Creates a JMS connection factory for 
Qpid.</p></td></tr><tr><td align="left" valign="top" width="5%"><p><a 
id="callout-java-connection"></a><a href="#hello-java-connection"><span><img 
alt="4" border="0" src="images/callouts/4.png" /></span></a> </p></td><td 
align="left" valign="top"><p>Creates a JMS connection.</p></td></tr><tr><td 
align="left" valign="top" width="5%"><p><a id="callout-java-start"></a><a 
href="#hello-java-start"><span><img alt="5" border="0" 
src="images/callouts/5.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Activates the connection.</p></td></tr><tr><td align="left" 
valign="top" width="5%"><p><a id="callout-java-session"></a><a 
href="#hello-java-session"><span><img alt="6" border="0" 
src="images/callouts/6.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Creates a session. This session is not transactional 
(transactions='false'), and messages are automatically 
acknowledged.</p></td></tr><tr><td align="left" valign="to
 p" width="5%"><p><a id="callout-java-destination"></a><a 
href="#hello-java-destination"><span><img alt="7" border="0" 
src="images/callouts/7.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Creates a destination for the topic exchange, so senders and 
receivers can use it.</p></td></tr><tr><td align="left" valign="top" 
width="5%"><p><a id="callout-java-producer"></a><a 
href="#hello-java-producer"><span><img alt="8" border="0" 
src="images/callouts/8.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Creates a producer that sends messages to the topic 
exchange.</p></td></tr><tr><td align="left" valign="top" width="5%"><p><a 
id="callout-java-consumer"></a><a href="#hello-java-consumer"><span><img 
alt="9" border="0" src="images/callouts/9.png" /></span></a> </p></td><td 
align="left" valign="top"><p>Creates a consumer that reads messages from the 
topic exchange.</p></td></tr><tr><td align="left" valign="top" width="5%"><p><a 
id="callout-java-receive"></a><a href="#he
 llo-java-receive"><span><img alt="10" border="0" src="images/callouts/10.png" 
/></span></a> </p></td><td align="left" valign="top"><p>Reads the next 
available message.</p></td></tr><tr><td align="left" valign="top" 
width="5%"><p><a id="callout-java-close"></a><a 
href="#hello-java-close"><span><img alt="11" border="0" 
src="images/callouts/11.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Closes the connection, all sessions managed by the connection, 
and all senders and receivers managed by each session.</p></td></tr><tr><td 
align="left" valign="top" width="5%"><p><a id="callout-java-jndi-close"></a><a 
href="#hello-java-jndi-close"><span><img alt="12" border="0" 
src="images/callouts/12.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Closes the JNDI context.</p></td></tr></table></div><p>The 
contents of the hello.properties file are shown below.</p><div 
class="example"><a id="d0e80"></a><p 
class="title"><strong>Example&#160;1.2.&#160;JNDI Properties File for 
 "Hello world!" example</strong></p><div class="example-contents"><pre 
class="programlisting">
+java.naming.factory.initial
+= org.apache.qpid.jndi.PropertiesFileInitialContextFactory
+
+# connectionfactory.[jndiname] = [ConnectionURL]
+connectionfactory.qpidConnectionfactory
+= amqp://guest:guest@clientid/test?brokerlist='tcp://localhost:5672' <a 
class="co" 
href="JMS-Client-0-10-Example.html#callout-hello-properties-connectionfactory" 
id="hello-properties-connectionfactory"><span><img alt="1" border="0" 
src="images/callouts/1.png" /></span></a>
+# destination.[jndiname] = [address_string]
+destination.topicExchange = amq.topic <a class="co" 
href="JMS-Client-0-10-Example.html#callout-hello-properties-destination" 
id="hello-properties-destination"><span><img alt="2" border="0" 
src="images/callouts/2.png" /></span></a>
+       </pre></div></div><br class="example-break" /><div 
class="calloutlist"><table border="0" summary="Callout list"><tr><td 
align="left" valign="top" width="5%"><p><a 
id="callout-hello-properties-connectionfactory"></a><a 
href="#hello-properties-connectionfactory"><span><img alt="1" border="0" 
src="images/callouts/1.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Defines a connection factory from which connections
+         can be created. The syntax of a ConnectionURL is given in
+         <a class="xref" href="JMS-Client-0-10-Configuring-JNDI.html" 
title="2.2.&#160;JNDI Properties">Section&#160;2.2, &#8220;JNDI 
Properties&#8221;</a>.</p></td></tr><tr><td align="left" valign="top" 
width="5%"><p><a id="callout-hello-properties-destination"></a><a 
href="#hello-properties-destination"><span><img alt="2" border="0" 
src="images/callouts/2.png" /></span></a> </p></td><td align="left" 
valign="top"><p>Defines a destination for which MessageProducers
+         and/or MessageConsumers can be created to send and receive
+         messages. The value for the destination in the properties
+         file is an address string as described in
+         <a class="xref" href="JMS-Client-0-10-Configuring-Addresses.html" 
title="2.4.&#160;Addresses">Section&#160;2.4, &#8220;Addresses&#8221;</a>. In 
the JMS
+         implementation MessageProducers are analogous to senders in
+         the Qpid Message API, and MessageConsumers are analogous to
+         receivers.</p></td></tr></table></div></div><div 
class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td 
align="left" width="40%"><a accesskey="p" 
href="JMS-Client-0-10-Book.html">Prev</a>&#160;</td><td align="center" 
width="20%">&#160;</td><td align="right" width="40%">&#160;<a accesskey="n" 
href="JMS-Client-0-10-Configuring.html">Next</a></td></tr><tr><td align="left" 
valign="top" width="40%">Qpid AMQP 0-10 JMS Client&#160;</td><td align="center" 
width="20%"><a accesskey="h" href="JMS-Client-0-10-Book.html">Home</a></td><td 
align="right" valign="top" width="40%">&#160;Chapter&#160;2.&#160;Configuring 
the JMS Client</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-Miscellaneous-MapMessages.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Miscellaneous-MapMessages.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Miscellaneous-MapMessages.html.in
new file mode 100644
index 0000000..e6967b9
--- /dev/null
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Miscellaneous-MapMessages.html.in
@@ -0,0 +1,48 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">3.2.&#160;JMS MapMessage 
Types</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="JMS-Client-0-10-Miscellaneous.html">Prev</a>&#160;</td><th align="center" 
width="60%">Chapter&#160;3.&#160;Miscellaneous</th><td align="right" 
width="20%">&#160;</td></tr></table><hr /></div><div class="section"><div 
class="titlepage"><div><div><h2 class="title" style="clear: both"><a 
id="JMS-Client-0-10-Miscellaneous-MapMessages"></a>3.2.&#160;JMS MapMessage 
Types</h2></div></div></div><p>Qpid supports the Java JMS <code 
class="classname">MapMessage</code> interface, which provides support for maps 
in messages. The following code shows how to send a <code 
class="classname">MapMessage</code> in Java JMS.</p><div class="example"><a 
id="d0e2192"></a><p class="title"><strong>Example&#160;3.1.&#160;Sending a Java 
JMS MapMessage</strong></p><div class="example-contents
 "><pre class="programlisting">
+       import java.util.ArrayList;
+       import java.util.HashMap;
+       import java.util.List;
+       import java.util.Map;
+
+       import javax.jms.Connection;
+       import javax.jms.Destination;
+       import javax.jms.MapMessage;
+       import javax.jms.MessageProducer;
+       import javax.jms.Session;
+
+       import java.util.Arrays;
+
+       // !!! SNIP !!!
+
+       MessageProducer producer = session.createProducer(queue);
+
+       MapMessage m = session.createMapMessage();
+       m.setIntProperty("Id", 987654321);
+       m.setStringProperty("name", "Widget");
+       m.setDoubleProperty("price", 0.99);
+
+       List&lt;String&gt; colors = new ArrayList&lt;String&gt;();
+       colors.add("red");
+       colors.add("green");
+       colors.add("white");
+       m.setObject("colours", colors);
+
+       Map&lt;String,Double&gt; dimensions = new 
HashMap&lt;String,Double&gt;();
+       dimensions.put("length",10.2);
+       dimensions.put("width",5.1);
+       dimensions.put("depth",2.0);
+       m.setObject("dimensions",dimensions);
+
+       List&lt;List&lt;Integer&gt;&gt; parts = new 
ArrayList&lt;List&lt;Integer&gt;&gt;();
+       parts.add(Arrays.asList(new Integer[] {1,2,5}));
+       parts.add(Arrays.asList(new Integer[] {8,2,5}));
+       m.setObject("parts", parts);
+
+       Map&lt;String,Object&gt; specs = new HashMap&lt;String,Object&gt;();
+       specs.put("colours", colors);
+       specs.put("dimensions", dimensions);
+       specs.put("parts", parts);
+       m.setObject("specs",specs);
+
+       producer.send(m);
+       </pre></div></div><br class="example-break" /><p>The following table 
shows the datatypes that can be sent in a <code 
class="classname">MapMessage</code>, and the corresponding datatypes that will 
be received by clients in Python or C++.</p><div class="table"><a 
id="table-Java-Maps"></a><p class="title"><strong>Table&#160;3.2.&#160;Java 
Datatypes in Maps</strong></p><div class="table-contents"><table border="1" 
summary="Java Datatypes in Maps"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Java 
Datatype</th><th>Python</th><th>C++</th></tr></thead><tbody><tr><td>boolean</td><td>bool</td><td>bool</td></tr><tr><td>short</td><td>int
 | long</td><td>int16</td></tr><tr><td>int</td><td>int | 
long</td><td>int32</td></tr><tr><td>long</td><td>int | 
long</td><td>int64</td></tr><tr><td>float</td><td>float</td><td>float</td></tr><tr><td>double</td><td>float</td><td>double</td></tr><tr><td>java.lang.String</td><td>unicode</td><td>std::string</td></tr><tr><td>java.util.UUID</td><td>uuid</
 td><td>qpid::types::Uuid</td></tr><tr><td>java.util.Map<a class="footnote" 
href="#ftn.d0e2274" id="d0e2274"><sup 
class="footnote">[a]</sup></a></td><td>dict</td><td>Variant::Map</td></tr><tr><td>java.util.List</td><td>list</td><td>Variant::List</td></tr></tbody><tbody
 class="footnotes"><tr><td colspan="3"><div class="footnote" 
id="ftn.d0e2274"><p><a class="para" href="#d0e2274"><sup class="para">[a] 
</sup></a>In Qpid, maps can nest. This goes beyond the functionality required 
by the JMS specification.</p></div></td></tr></tbody></table></div></div><br 
class="table-break" /></div><div class="navfooter"><hr /><table 
summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a 
accesskey="p" href="JMS-Client-0-10-Miscellaneous.html">Prev</a>&#160;</td><td 
align="center" width="20%"><a accesskey="u" 
href="JMS-Client-0-10-Miscellaneous.html">Up</a></td><td align="right" 
width="40%">&#160;</td></tr><tr><td align="left" valign="top" 
width="40%">Chapter&#160;3.&#160;Miscellan
 eous&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="JMS-Client-0-10-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-Miscellaneous.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Miscellaneous.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Miscellaneous.html.in
new file mode 100644
index 0000000..6c36ded
--- /dev/null
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/JMS-Client-0-10-Miscellaneous.html.in
@@ -0,0 +1,8 @@
+<div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" 
colspan="3">Chapter&#160;3.&#160;Miscellaneous</th></tr><tr><td align="left" 
width="20%"><a accesskey="p" 
href="JMS-Client-0-10-Configuring-Logging.html">Prev</a>&#160;</td><th 
align="center" width="60%">&#160;</th><td align="right" width="20%">&#160;<a 
accesskey="n" 
href="JMS-Client-0-10-Miscellaneous-MapMessages.html">Next</a></td></tr></table><hr
 /></div><div class="chapter"><div class="titlepage"><div><div><h1 
class="title"><a 
id="JMS-Client-0-10-Miscellaneous"></a>Chapter&#160;3.&#160;Miscellaneous</h1></div></div></div><div
 class="toc"><p><strong>Table of Contents</strong></p><dl class="toc"><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></div><div class="section"><div 
class="titlepage"><div><div><h2 class="title" style="clear: both"><a 
id="JMS-Client-0-10-Miscellaneous-Message-Properties"></a>3.1.&#160;Java JMS 
Message Properties</h2></div></div></div><p>The following table shows how Qpid 
Messaging API message
+      properties are mapped to AMQP 0-10 message properties and
+      delivery properties. In this table <code class="varname">msg</code>
+      refers to the Message class defined in the Qpid Messaging API,
+      <code class="varname">mp</code> refers to an AMQP 0-10
+      <code class="varname">message-properties</code> struct, and
+      <code class="varname">dp</code> refers to an AMQP 0-10
+      <code class="varname">delivery-properties</code> struct.</p><div 
class="table"><a id="d0e2097"></a><p 
class="title"><strong>Table&#160;3.1.&#160;Java JMS Mapping to AMQP 0-10 
Message Properties</strong></p><div class="table-contents"><table border="1" 
summary="Java JMS Mapping to AMQP 0-10 Message Properties"><colgroup><col 
/><col /></colgroup><thead><tr><th>Java JMS Message Property</th><th>AMQP 0-10 
Property<a class="footnote" href="#ftn.d0e2107" id="d0e2107"><sup 
class="footnote">[a]</sup></a></th></tr></thead><tbody><tr><td>JMSMessageID</td><td>mp.message_id</td></tr><tr><td>qpid.subject<a
 class="footnote" href="#ftn.d0e2125" id="d0e2125"><sup 
class="footnote">[b]</sup></a></td><td>mp.application_headers["qpid.subject"]</td></tr><tr><td>JMSXUserID</td><td>mp.user_id</td></tr><tr><td>JMSReplyTo</td><td>mp.reply_to<a
 class="footnote" href="#ftn.d0e2140" id="d0e2140"><sup 
class="footnote">[c]</sup></a></td></tr><tr><td>JMSCorrelationID</td><td>mp.correlation_id</td></tr><tr><
 
td>JMSDeliveryMode</td><td>dp.delivery_mode</td></tr><tr><td>JMSPriority</td><td>dp.priority</td></tr><tr><td>JMSExpiration</td><td>dp.ttl<a
 class="footnote" href="#ftn.d0e2163" id="d0e2163"><sup 
class="footnote">[d]</sup></a></td></tr><tr><td>JMSRedelivered</td><td>dp.redelivered</td></tr><tr><td>JMS
 
Properties</td><td>mp.application_headers</td></tr><tr><td>JMSType</td><td>mp.content_type</td></tr></tbody><tbody
 class="footnotes"><tr><td colspan="2"><div class="footnote" 
id="ftn.d0e2107"><p><a class="para" href="#d0e2107"><sup class="para">[a] 
</sup></a>In these entries, <code class="literal">mp</code> refers to an AMQP 
message property, and <code class="literal">dp</code> refers to an AMQP 
delivery property.</p></div><div class="footnote" id="ftn.d0e2125"><p><a 
class="para" href="#d0e2125"><sup class="para">[b] </sup></a>This is a custom 
JMS property, set automatically by the Java JMS client 
implementation.</p></div><div class="footnote" id="ftn.d0e2140"><p><a 
class="para" href="
 #d0e2140"><sup class="para">[c] </sup></a>The reply_to is converted from the 
protocol representation into an address.</p></div><div class="footnote" 
id="ftn.d0e2163"><p><a class="para" href="#d0e2163"><sup class="para">[d] 
</sup></a>JMSExpiration = dp.ttl + 
currentTime</p></div></td></tr></tbody></table></div></div><br 
class="table-break" /></div></div><div class="navfooter"><hr /><table 
summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a 
accesskey="p" 
href="JMS-Client-0-10-Configuring-Logging.html">Prev</a>&#160;</td><td 
align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a 
accesskey="n" 
href="JMS-Client-0-10-Miscellaneous-MapMessages.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">2.5.&#160;Logging&#160;</td><td 
align="center" width="20%"><a accesskey="h" 
href="JMS-Client-0-10-Book.html">Home</a></td><td align="right" valign="top" 
width="40%">&#160;3.2.&#160;JMS MapMessage Types</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/css/style.css
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/jms-client-0-10/book/css/style.css 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/css/style.css
new file mode 100644
index 0000000..8179bf4
--- /dev/null
+++ b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/css/style.css
@@ -0,0 +1,131 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+ul {
+    list-style-type:square;
+}
+
+th {
+    font-weight: bold;
+}
+
+.navfooter td {
+    font-size:10pt;
+}
+
+.navheader td {
+    font-size:10pt;
+}
+
+body {
+    margin:0;
+    background:#FFFFFF;
+    font-family:"Verdana", sans-serif;
+    font-size:10pt;
+}
+
+.container {
+    width:950px;
+    margin:0 auto;
+}
+
+body a {
+    color:#000000;
+}
+
+
+div.book {
+    margin-left:10pt;
+    margin-right:10pt;
+}
+
+div.preface {
+    margin-left:10pt;
+    margin-right:10pt;
+}
+
+div.chapter {
+    margin-left:10pt;
+    margin-right:10pt;
+}
+
+div.section {
+    margin-left:10pt;
+    margin-right:10pt;
+}
+
+div.titlepage {
+    margin-left:-10pt;
+    margin-right:-10pt;
+}
+
+.calloutlist td {
+    font-size:10pt;
+}
+
+.table-contents table {
+    border-spacing: 0px;
+}
+
+.table-contents td {
+    font-size:10pt;
+    padding-left:6px;
+    padding-right:6px;
+}
+
+.chapter h2.title {
+    font-size:20pt;
+    color:#0c3b82;
+}
+
+.chapter .section h2.title {
+    font-size:18pt;
+    color:#0c3b82;
+}
+
+.section h2.title {
+    font-size:16pt;
+    color:#0c3b82;
+}
+
+.section h3.title {
+    font-size:14pt;
+    color:#0c3b82;
+}
+
+.section h4.title {
+    font-size:12pt;
+    color:#0c3b82;
+}
+
+.section h5.title {
+    font-size:12pt;
+    color:#0c3b82;
+}
+
+.section h6.title {
+    font-size:12pt;
+    color:#0c3b82;
+}
+
+.toc a {
+    font-size:9pt;
+}
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/index.html.in
----------------------------------------------------------------------
diff --git a/input/releases/qpid-java-6.0.2/jms-client-0-10/book/index.html.in 
b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/index.html.in
new file mode 100644
index 0000000..048cbeb
--- /dev/null
+++ b/input/releases/qpid-java-6.0.2/jms-client-0-10/book/index.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

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Exceptions.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Exceptions.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Exceptions.html.in
index 0666502..b245cd0 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Exceptions.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Exceptions.html.in
@@ -3,7 +3,7 @@
     with contextual information being provided by the messages of linked 
exception(s). To understand
     the problem, it is important to read the messages associated with <span 
class="emphasis"><em>all</em></span> the
     linked exceptions.</p><p>The following table describes some of the more 
common exceptions linked to JMSException
-    thrown by JMS methods whilst using the client:</p><div class="table"><a 
id="d0e2495"></a><p class="title"><strong>Table&#160;A.1.&#160;Exceptions 
linked to JMSExceptions thrown by JMS methods</strong></p><div 
class="table-contents"><table border="1" summary="Exceptions linked to 
JMSExceptions thrown by JMS methods" width="100%"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Linked 
Exception</th><th>Message</th><th>Explanation/Common 
Causes</th></tr></thead><tbody><tr><td>AMQUnresolvedAddressException</td><td><span
 class="emphasis"><em>message varies</em></span></td><td><p>Indicates that the 
hostname included in the Connection URL's <a class="link" 
href="JMS-Client-0-8-Connection-URL.html#JMS-Client-0-8-Connection-URL-ConnectionOptions-Brokerlist">brokerlist</a>,
 could not be resolved, . This could mean that the hostname is
+    thrown by JMS methods whilst using the client:</p><div class="table"><a 
id="d0e2498"></a><p class="title"><strong>Table&#160;A.1.&#160;Exceptions 
linked to JMSExceptions thrown by JMS methods</strong></p><div 
class="table-contents"><table border="1" summary="Exceptions linked to 
JMSExceptions thrown by JMS methods" width="100%"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Linked 
Exception</th><th>Message</th><th>Explanation/Common 
Causes</th></tr></thead><tbody><tr><td>AMQUnresolvedAddressException</td><td><span
 class="emphasis"><em>message varies</em></span></td><td><p>Indicates that the 
hostname included in the Connection URL's <a class="link" 
href="JMS-Client-0-8-Connection-URL.html#JMS-Client-0-8-Connection-URL-ConnectionOptions-Brokerlist">brokerlist</a>,
 could not be resolved, . This could mean that the hostname is
               mispelt, or there is name resolution 
problem.</p></td></tr><tr><td>AMQConnectionFailure</td><td>Connection 
refused</td><td><p>Indicates that the host included in the Connection URL's <a 
class="link" 
href="JMS-Client-0-8-Connection-URL.html#JMS-Client-0-8-Connection-URL-ConnectionOptions-Brokerlist">brokerlist</a>,
 actively refused the connection. This could mean that the
               hostname and/or port number is incorrect, or the Broker may not 
be
             running.</p></td></tr><tr><td>AMQConnectionFailure</td><td>connect 
timed out</td><td><p>Indicates that the host included in the Connection URL's 
<a class="link" 
href="JMS-Client-0-8-Connection-URL.html#JMS-Client-0-8-Connection-URL-ConnectionOptions-Brokerlist">brokerlist</a>,
 could not be contacted within the <a class="link" 
href="JMS-Client-0-8-Connection-URL.html#JMS-Client-0-8-Connection-URL-BrokerOptions-ConnectTimeout">connecttimeout</a>.
 This could mean that the host is shutdown, or a networking
@@ -25,7 +25,7 @@
               group) has not been permissioned within the Broker's <a 
class="link" href="../../java-broker/book/Java-Broker-Security-ACLs.html" 
target="_top">Access Control List
                 (ACL)</a>.</p></td></tr></tbody></table></div></div><br 
class="table-break" /><p>The following table describes some of the more common 
exceptions linked to JMSException sent
     to <a class="link" 
href="http://docs.oracle.com/javaee/6/api/javax/jms/ExceptionListener.html"; 
target="_top">ExceptionListener</a>
-    instances.</p><div class="table"><a id="d0e2611"></a><p 
class="title"><strong>Table&#160;A.2.&#160;Exceptions linked to JMSExceptions 
received by ExceptionListeners</strong></p><div class="table-contents"><table 
border="1" summary="Exceptions linked to JMSExceptions received by 
ExceptionListeners" width="100%"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Linked 
Exception</th><th>Message</th><th>Explanation/Common 
Causes</th></tr></thead><tbody><tr><td><a 
id="JMS-Client-0-8-Appendix-Exceptions-AMQNoRouteException"></a>AMQNoRouteException</td><td>No
 Route for message [Exchange: <span class="emphasis"><em>exchange 
name</em></span>, Routing key:
+    instances.</p><div class="table"><a id="d0e2614"></a><p 
class="title"><strong>Table&#160;A.2.&#160;Exceptions linked to JMSExceptions 
received by ExceptionListeners</strong></p><div class="table-contents"><table 
border="1" summary="Exceptions linked to JMSExceptions received by 
ExceptionListeners" width="100%"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Linked 
Exception</th><th>Message</th><th>Explanation/Common 
Causes</th></tr></thead><tbody><tr><td><a 
id="JMS-Client-0-8-Appendix-Exceptions-AMQNoRouteException"></a>AMQNoRouteException</td><td>No
 Route for message [Exchange: <span class="emphasis"><em>exchange 
name</em></span>, Routing key:
               <span class="emphasis"><em>routing key</em></span>] [error code 
312: no route]</td><td><p>Indicate that the named exchange is unable to route a 
message to at least one
               queue.</p>
             <p>This will occur if a queue has been improperly bound to an 
exchange. Use the

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions-Binding.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions-Binding.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions-Binding.html.in
index 2adacc3..2b305f5 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions-Binding.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions-Binding.html.in
@@ -1,5 +1,5 @@
 <div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">C.2.&#160;Binding 
Management</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="JMS-Client-0-8-Appendix-JMS-Extensions.html">Prev</a>&#160;</td><th 
align="center" width="60%">Appendix&#160;C.&#160;JMS Extensions</th><td 
align="right" width="20%">&#160;<a accesskey="n" 
href="JMS-Client-0-8-Appendix-PooledConnecytionFactory.html">Next</a></td></tr></table><hr
 /></div><div class="section"><div class="titlepage"><div><div><h2 
class="title" style="clear: both"><a 
id="JMS-Client-0-8-Appendix-JMS-Extensions-Binding"></a>C.2.&#160;Binding 
Management</h2></div></div></div><p>These extensions allow bindings to be 
created or removed.</p><div class="section"><div 
class="titlepage"><div><div><h3 class="title"><a 
id="JMS-Client-0-8-Appendix-JMS-Extensions-Binding-Creation"></a>C.2.1.&#160;Binding
 creation</h3></div></div></div><p>The following example illust
 rates the creation of queue binding to topic exchange with
-        JMS client.</p><div class="example"><a id="d0e2738"></a><p 
class="title"><strong>Example&#160;C.2.&#160;Binding a queue using 
JMS</strong></p><div class="example-contents"><pre 
class="programlisting">ConnectionFactory connectionFactory = ...
+        JMS client.</p><div class="example"><a id="d0e2741"></a><p 
class="title"><strong>Example&#160;C.2.&#160;Binding a queue using 
JMS</strong></p><div class="example-contents"><pre 
class="programlisting">ConnectionFactory connectionFactory = ...
 Connection connection = connectionFactory.createConnection();
 AMQSession&lt;?, ?&gt; session = 
(AMQSession&lt;?,?&gt;)connection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions.html.in
index 9880e0e..1c52b9d 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-JMS-Extensions.html.in
@@ -3,7 +3,7 @@
       subject to change and will not be supported in this form for AMQP 1.0. 
Instead, the reader is
       directed towards the Managment interfaces of the Broker.</p></div><div 
class="section"><div class="titlepage"><div><div><h2 class="title" 
style="clear: both"><a 
id="JMS-Client-0-8-Appendix-JMS-Extensions-Queue"></a>C.1.&#160;Queue 
Management</h2></div></div></div><p>These extensions allow queues to be created 
or removed.</p><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="JMS-Client-0-8-Appendix-JMS-Extensions-Queue-Creation"></a>C.1.1.&#160;Queue
 creation</h3></div></div></div><p>The following example illustrates the 
creation of the a LVQ queue from a
         javax.jms.Session object. Note that this utilises a Qpid specific 
extension to JMS and
-        involves casting the session object back to its Qpid 
base-class.</p><div class="example"><a id="d0e2723"></a><p 
class="title"><strong>Example&#160;C.1.&#160;Creation of an LVQ using the Qpid 
extension to JMS</strong></p><div class="example-contents"><pre 
class="programlisting">Map&lt;String,Object&gt; arguments = new 
HashMap&lt;String, Object&gt;();
+        involves casting the session object back to its Qpid 
base-class.</p><div class="example"><a id="d0e2726"></a><p 
class="title"><strong>Example&#160;C.1.&#160;Creation of an LVQ using the Qpid 
extension to JMS</strong></p><div class="example-contents"><pre 
class="programlisting">Map&lt;String,Object&gt; arguments = new 
HashMap&lt;String, Object&gt;();
 arguments.put("qpid.last_value_queue_key","ISIN");
 AMQDestination amqQueue = (AMQDestination) context.lookup("myqueue");
 ((AMQSession&lt;?,?&gt;) session).createQueue(

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Maven.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Maven.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Maven.html.in
index ac47b33..1e2cfdc 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Maven.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Maven.html.in
@@ -1,6 +1,6 @@
 <div class="docbook"><div class="navheader"><table summary="Navigation header" 
width="100%"><tr><th align="center" colspan="3">Appendix&#160;B.&#160;Minimal 
Maven POM</th></tr><tr><td align="left" width="20%"><a accesskey="p" 
href="JMS-Client-0-8-Appendix-Exceptions.html">Prev</a>&#160;</td><th 
align="center" width="60%">&#160;</th><td align="right" width="20%">&#160;<a 
accesskey="n" 
href="JMS-Client-0-8-Appendix-JMS-Extensions.html">Next</a></td></tr></table><hr
 /></div><div class="appendix"><div class="titlepage"><div><div><h1 
class="title"><a 
id="JMS-Client-0-8-Appendix-Maven"></a>Appendix&#160;B.&#160;Minimal Maven 
POM</h1></div></div></div><p> The following is a minimal Maven POM required to 
use the Qpid Client. It is suitable for
     use with the <a class="link" href="JMS-Client-0-8-Examples.html" 
title="Chapter&#160;4.&#160;Examples">examples</a> included in this
-    book.</p><div class="example"><a id="d0e2696"></a><p 
class="title"><strong>Example&#160;B.1.&#160;Minimal Maven POM 
</strong></p><div class="example-contents"><pre class="programlisting">
+    book.</p><div class="example"><a id="d0e2699"></a><p 
class="title"><strong>Example&#160;B.1.&#160;Minimal Maven POM 
</strong></p><div class="example-contents"><pre class="programlisting">
 
 &lt;project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"&gt;
@@ -12,7 +12,7 @@
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.qpid&lt;/groupId&gt;
       &lt;artifactId&gt;qpid-client&lt;/artifactId&gt;
-      &lt;version&gt;6.0.3-SNAPSHOT&lt;/version&gt;
+      &lt;version&gt;6.0.2&lt;/version&gt;
     &lt;/dependency&gt;
     &lt;dependency&gt;
       &lt;groupId&gt;org.slf4j&lt;/groupId&gt;

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-PooledConnecytionFactory.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-PooledConnecytionFactory.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-PooledConnecytionFactory.html.in
index ea7b8d9..673d3c2 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-PooledConnecytionFactory.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-PooledConnecytionFactory.html.in
@@ -14,7 +14,7 @@
     milliseconds. If connection is not used within the specified interval it 
is closed
     automatically. </p><p>This implementation can be useful in <span 
class="emphasis"><em>Spring JMS</em></span> based applications. An
     example below demonstrates how to configure <code 
class="literal">PooledConnectionFactory</code> in the
-    Spring xml configuration. </p><div class="example"><a id="d0e2807"></a><p 
class="title"><strong>Example&#160;D.1.&#160;Example of configuring <span 
class="emphasis"><em>PooledConnectionFactory</em></span> in spring xml
+    Spring xml configuration. </p><div class="example"><a id="d0e2810"></a><p 
class="title"><strong>Example&#160;D.1.&#160;Example of configuring <span 
class="emphasis"><em>PooledConnectionFactory</em></span> in spring xml
         configuration.</strong></p><div class="example-contents"><pre 
class="programlisting">
 &lt;bean id="pooledConnectionFactory" 
class="org.apache.qpid.client.PooledConnectionFactory"&gt;
   &lt;!-- set maximum number of pool connections to 20--&gt;
@@ -28,7 +28,7 @@
     <span class="emphasis"><em>PooledConnectionFactory</em></span> spring bean 
can be configured with such
       <span class="emphasis"><em>spring-jms</em></span> beans like
       <span class="emphasis"><em>DefaultMessageListenerContainer</em></span> 
and <span class="emphasis"><em>JmsTemplate</em></span>. The
-    example below demonstrates how to do that </p><div class="example"><a 
id="d0e2830"></a><p class="title"><strong>Example&#160;D.2.&#160;Examples of 
configuring <span class="emphasis"><em>PooledConnectionFactory</em></span> with
+    example below demonstrates how to do that </p><div class="example"><a 
id="d0e2833"></a><p class="title"><strong>Example&#160;D.2.&#160;Examples of 
configuring <span class="emphasis"><em>PooledConnectionFactory</em></span> with
           <span 
class="emphasis"><em>DefaultMessageListenerContainer</em></span> and
         <span class="emphasis"><em>JmsTemplate</em></span>.</strong></p><div 
class="example-contents"><pre class="programlisting">
 &lt;bean id="jmsProducerTemplate" 
class="org.springframework.jms.core.JmsTemplate"&gt;

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Tomcat-JNDI-Integration.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Tomcat-JNDI-Integration.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Tomcat-JNDI-Integration.html.in
index bf8fba8..90179dd 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Tomcat-JNDI-Integration.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Appendix-Tomcat-JNDI-Integration.html.in
@@ -32,22 +32,22 @@
         </p></li><li class="listitem"><p>
           an instance of <code class="literal">AMQQueue</code> from a <code 
class="literal">Reference</code> containing reference
           address (<a class="link" 
href="http://docs.oracle.com/javase/7/docs/api/javax/naming/RefAddr.html"; 
target="_top">javax.naming.RefAddr</a>)
-          <code class="literal">address</code> with content set to either <a 
class="link" href="/releases/qpid-0.32/programming/book/" 
target="_top">Address</a> or
+          <code class="literal">address</code> with content set to either <a 
class="link" href="/releases/qpid-java-6.0.2/jms-client-0-10/book/" 
target="_top">Address</a> or
           <a class="link" href="JMS-Client-0-8-Binding-URL.html" 
title="Chapter&#160;8.&#160;Binding URL">Binding URL</a>.
         </p></li><li class="listitem"><p>
           an instance of <code class="literal">AMQTopic</code> from a <code 
class="literal">Reference</code> containing reference
           address (<a class="link" 
href="http://docs.oracle.com/javase/7/docs/api/javax/naming/RefAddr.html"; 
target="_top">javax.naming.RefAddr</a>)
-          <code class="literal">address</code> with content set to either <a 
class="link" href="/releases/qpid-0.32/programming/book/" 
target="_top">Address</a> or
+          <code class="literal">address</code> with content set to either <a 
class="link" href="/releases/qpid-java-6.0.2/jms-client-0-10/book/" 
target="_top">Address</a> or
           <a class="link" href="JMS-Client-0-8-Binding-URL.html" 
title="Chapter&#160;8.&#160;Binding URL">Binding URL</a>.
         </p></li></ul></div><p>
     </p><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 
class="title">Note</h3><p>
         For  <code class="literal">AMQQueue</code> and <code 
class="literal">AMQTopic</code> prefix <code class="literal">BURL:</code> need
         to be specified for <a class="link" 
href="JMS-Client-0-8-Binding-URL.html" title="Chapter&#160;8.&#160;Binding 
URL">Binding URL</a>. Otherwise, client will try
-        to parse content using <a class="link" 
href="/releases/qpid-0.32/programming/book/" target="_top">Address</a> format.
+        to parse content using <a class="link" 
href="/releases/qpid-java-6.0.2/jms-client-0-10/book/" 
target="_top">Address</a> format.
       </p></div><p>
   </p><p>An example below demonstrates how to create JNDI resources in the 
Tomcat container using Resource declarations in context.xml
     (A Tomcat specific web application configuration file usually added into 
war under /META-INF/context.xml).
-  </p><div class="example"><a id="d0e3045"></a><p 
class="title"><strong>Example&#160;E.1.&#160;An example of Tomcat context.xml 
declaring Qpid JNDI resources</strong></p><div class="example-contents"><pre 
class="programlisting">
+  </p><div class="example"><a id="d0e3048"></a><p 
class="title"><strong>Example&#160;E.1.&#160;An example of Tomcat context.xml 
declaring Qpid JNDI resources</strong></p><div class="example-contents"><pre 
class="programlisting">
 &lt;?xml version='1.0' encoding='utf-8'?&gt;
 &lt;!DOCTYPE xml&gt;
 &lt;Context&gt;
@@ -81,7 +81,7 @@
     20 and 60000 milliseconds accordingly.
   </p><p>
     The client application can find the resources declared in Tomcat 
context.xml using the code below:
-  </p><div class="example"><a id="d0e3069"></a><p 
class="title"><strong>Example&#160;E.2.&#160;An example of JNDI lookup for Qpid 
resources registered in Tomcat JNDI</strong></p><div 
class="example-contents"><pre class="programlisting">
+  </p><div class="example"><a id="d0e3072"></a><p 
class="title"><strong>Example&#160;E.2.&#160;An example of JNDI lookup for Qpid 
resources registered in Tomcat JNDI</strong></p><div 
class="example-contents"><pre class="programlisting">
     Context context = new InitialContext();
     Context environmentContext = (Context)context.lookup("java:comp/env");
     ...
@@ -99,7 +99,7 @@
       removed in future version of client. For backward compatibility, Qpid 
JNDI resources can be declared using fully
       qualified class names as addresses. That will became unsupported in 
future version as well.
       An example of Tomcat context.xml with declarations of JNDI resources 
using deprecated factory and addresses is provided below.
-  </p><div class="example"><a id="d0e3092"></a><p 
class="title"><strong>Example&#160;E.3.&#160;An example of Tomcat context.xml 
declaring Qpid JNDI resources using deprecated <code 
class="literal">ObjectFactory</code> and deprecated addresses</strong></p><div 
class="example-contents"><pre class="programlisting">
+  </p><div class="example"><a id="d0e3095"></a><p 
class="title"><strong>Example&#160;E.3.&#160;An example of Tomcat context.xml 
declaring Qpid JNDI resources using deprecated <code 
class="literal">ObjectFactory</code> and deprecated addresses</strong></p><div 
class="example-contents"><pre class="programlisting">
 &lt;?xml version='1.0' encoding='utf-8'?&gt;
 &lt;!DOCTYPE xml&gt;
 &lt;Context&gt;

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/f74d600b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Binding-URL.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Binding-URL.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Binding-URL.html.in
index 4df2c57..3a6e22e 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Binding-URL.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Binding-URL.html.in
@@ -13,7 +13,7 @@
           Queue names may consist of any mixture of digits, letters, and 
underscores </p></li><li class="listitem"><p><span 
class="emphasis"><em>Options</em></span>, key-value pairs separated by '=' 
character specifying
           queue and exchange creation arguments, routing key, client 
behaviour, etc. </p></li></ul></div><p>
   </p><div class="important" style="margin-left: 0.5in; margin-right: 
0.5in;"><h3 class="title">Binding URL option quoting</h3><p>Take care with the 
quoting surrounding option values. Each option value
-        <span class="emphasis"><em>must</em></span> be surrounded with single 
quotes ('). </p></div><p> The following <span class="emphasis"><em>Binding 
URL</em></span> options are currently defined: </p><div class="table"><a 
id="d0e1607"></a><p class="title"><strong>Table&#160;8.1.&#160;Binding URL 
options </strong></p><div class="table-contents"><table border="1" 
summary="Binding URL options " width="100%"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Option</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td><p>durable</p></td><td><p>boolean
 </p></td><td><p>Queue durability flag. If it is set to <span 
class="emphasis"><em>true</em></span>, a durable
+        <span class="emphasis"><em>must</em></span> be surrounded with single 
quotes ('). </p></div><p> The following <span class="emphasis"><em>Binding 
URL</em></span> options are currently defined: </p><div class="table"><a 
id="d0e1610"></a><p class="title"><strong>Table&#160;8.1.&#160;Binding URL 
options </strong></p><div class="table-contents"><table border="1" 
summary="Binding URL options " width="100%"><colgroup><col /><col /><col 
/></colgroup><thead><tr><th>Option</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td><p>durable</p></td><td><p>boolean
 </p></td><td><p>Queue durability flag. If it is set to <span 
class="emphasis"><em>true</em></span>, a durable
                 queue is requested to create. The durable queue should be 
stored on the Broker and
                 remained there after Broker restarts until it is explicitly 
deleted. This option has
                 no meaning for JMS topic destinations, as by nature a topic 
destination only exists
@@ -44,7 +44,7 @@ direct://amq.direct//&lt;Queue Name&gt;
       </p><p>The Binding URLs for destinations created with calls to
           <span class="emphasis"><em>Session.createQueue(String)</em></span> 
can be expressed as </p><pre class="screen">
 direct://amq.direct//&lt;Queue Name&gt;?durable='true'
-         </pre><p> The durability flag is set to <span 
class="emphasis"><em>true</em></span> in such destinations. </p><div 
class="example"><a id="d0e1743"></a><p 
class="title"><strong>Example&#160;8.1.&#160;Binding URL examples for JMS 
queues</strong></p><div class="example-contents"><pre class="screen">
+         </pre><p> The durability flag is set to <span 
class="emphasis"><em>true</em></span> in such destinations. </p><div 
class="example"><a id="d0e1746"></a><p 
class="title"><strong>Example&#160;8.1.&#160;Binding URL examples for JMS 
queues</strong></p><div class="example-contents"><pre class="screen">
 direct://amq.direct//myNonDurableQueue
 direct://amq.direct//myDurableQueue?durable='true'
 direct://amq.direct//myAnotherQueue?durable='true'&amp;routingkey='myqueue'
@@ -56,7 +56,7 @@ direct://custom.direct//yetAnotherQueue
 topic://amq.topic//&lt;Queue name&gt;?routingkey='&lt;Topic 
Name&gt;'&amp;exclusive='true'&amp;autodelete='true'
          </pre><p>
       </p><p>The Binding URLs for a topic destination created with calls to
-          <span class="emphasis"><em>Session.createTopic("hello")</em></span> 
is provided below: </p><div class="example"><a id="d0e1761"></a><p 
class="title"><strong>Example&#160;8.2.&#160;Binding URL examples for JMS 
topics</strong></p><div class="example-contents"><pre class="screen">
+          <span class="emphasis"><em>Session.createTopic("hello")</em></span> 
is provided below: </p><div class="example"><a id="d0e1764"></a><p 
class="title"><strong>Example&#160;8.2.&#160;Binding URL examples for JMS 
topics</strong></p><div class="example-contents"><pre class="screen">
 
topic://amq.topic/hello/tmp_127_0_0_1_36973_1?routingkey='hello'&amp;exclusive='true'&amp;autodelete='true'
         </pre></div></div><p><br class="example-break" />
       </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="JMS-Client-0-8-Binding-URL-Topics-Wildcards"></a>8.1.3.&#160;Wildcard 
characters in routing keys for topic destinations</h3></div></div></div><p> 
AMQP exchanges of class <span class="emphasis"><em>topic</em></span> can route 
messages to the queues
@@ -70,6 +70,6 @@ topic://amq.topic?routingkey='stocks.#'
 topic://amq.topic?routingkey='stocks.*.ibm'
 topic://amq.topic?routingkey='stocks.nyse.ibm'
         </pre><p>
-      </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="JMS-Client-0-8-Binding-URL-Extra-Examples"></a>8.1.4.&#160;More 
Examples</h3></div></div></div><div class="table"><a id="d0e1786"></a><p 
class="title"><strong>Table&#160;8.2.&#160;Binding URL 
examples</strong></p><div class="table-contents"><table border="1" 
summary="Binding URL examples"><colgroup><col /><col 
/></colgroup><thead><tr><th>Binding 
URL</th><th>Description</th></tr></thead><tbody><tr><td><p>fanout://amq.fanout//myQueue</p></td><td><p>Binding
 URL binding queue "myQueue" to predefined "amq.fanout" exchange
+      </p></div><div class="section"><div class="titlepage"><div><div><h3 
class="title"><a 
id="JMS-Client-0-8-Binding-URL-Extra-Examples"></a>8.1.4.&#160;More 
Examples</h3></div></div></div><div class="table"><a id="d0e1789"></a><p 
class="title"><strong>Table&#160;8.2.&#160;Binding URL 
examples</strong></p><div class="table-contents"><table border="1" 
summary="Binding URL examples"><colgroup><col /><col 
/></colgroup><thead><tr><th>Binding 
URL</th><th>Description</th></tr></thead><tbody><tr><td><p>fanout://amq.fanout//myQueue</p></td><td><p>Binding
 URL binding queue "myQueue" to predefined "amq.fanout" exchange
                   of class 
"fanout"</p></td></tr><tr><td><p>topic://custom.topic//anotherQueue?routingkey='aq'</p></td><td><p>Binding
 URL binding queue "anotherQueue" to the exchange with name
-                  "custom.topic" of class "topic" using binding key 
"aq".</p></td></tr></tbody></table></div></div><br class="table-break" 
/></div></div><div class="footnotes"><br /><hr style="width:100; 
text-align:left;margin-left: 0" /><div class="footnote" id="ftn.d0e1519"><p><a 
class="para" href="#d0e1519"><sup class="para">[4] </sup></a>The client also 
supports the ADDR format. This is documented in <a class="link" 
href="/releases/qpid-0.32/programming/book/" target="_top">Programming in 
Apache Qpid</a>.</p></div></div></div><div class="navfooter"><hr /><table 
summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a 
accesskey="p" href="JMS-Client-0-8-Connection-URL.html">Prev</a>&#160;</td><td 
align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a 
accesskey="n" 
href="JMS-Client-0-8-System-Properties.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">Chapter&#160;7.&#160;Connection 
URLs&#160;</td><td align="center" wid
 th="20%"><a accesskey="h" href="JMS-Client-Book.html">Home</a></td><td 
align="right" valign="top" width="40%">&#160;Chapter&#160;9.&#160;System 
Properties</td></tr></table></div></div>
\ No newline at end of file
+                  "custom.topic" of class "topic" using binding key 
"aq".</p></td></tr></tbody></table></div></div><br class="table-break" 
/></div></div><div class="footnotes"><br /><hr style="width:100; 
text-align:left;margin-left: 0" /><div class="footnote" id="ftn.d0e1519"><p><a 
class="para" href="#d0e1519"><sup class="para">[4] </sup></a>The client also 
supports the <span class="emphasis"><em>Address/ADDR</em></span> format. This 
is documented in <a class="link" 
href="/releases/qpid-java-6.0.2/jms-client-0-10/book/" target="_top">Using the 
Qpid AMQP 0-10 JMS Client</a>.</p></div></div></div><div class="navfooter"><hr 
/><table summary="Navigation footer" width="100%"><tr><td align="left" 
width="40%"><a accesskey="p" 
href="JMS-Client-0-8-Connection-URL.html">Prev</a>&#160;</td><td align="center" 
width="20%">&#160;</td><td align="right" width="40%">&#160;<a accesskey="n" 
href="JMS-Client-0-8-System-Properties.html">Next</a></td></tr><tr><td 
align="left" valign="top" width="40%">Cha
 pter&#160;7.&#160;Connection URLs&#160;</td><td align="center" width="20%"><a 
accesskey="h" href="JMS-Client-Book.html">Home</a></td><td align="right" 
valign="top" width="40%">&#160;Chapter&#160;9.&#160;System 
Properties</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-8/book/JMS-Client-0-8-Introduction.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Introduction.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Introduction.html.in
index 85764dd..37d767c 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Introduction.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-Introduction.html.in
@@ -7,4 +7,4 @@
     the knowledge of the basic concepts of AMQP protocols can help developers 
in writing reliable
     and high-performant messaging application. </p><div class="important" 
style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Using the 
Qpid JMS client with 0-10</h3><p>This book documents the behaviour of the Qpid 
JMS client when used with the AMQP
       protocols <span class="emphasis"><em>0-8, 0-9, and 0-9-1</em></span> 
only. For behaviour when using the client
-      with AMQP 0-10 protocol, please refer to <a class="link" 
href="/releases/qpid-0.32/programming/book/" target="_top">Programming in 
Apache Qpid</a>.</p></div></div><div class="navfooter"><hr /><table 
summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a 
accesskey="p" href="JMS-Client-Book.html">Prev</a>&#160;</td><td align="center" 
width="20%">&#160;</td><td align="right" width="40%">&#160;<a accesskey="n" 
href="JMS-Client-0-8-Document-Scope-And-Intended-Audience.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">Qpid JMS Client for AMQP protocols 0-8, 
0-9 and 0-9-1&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="JMS-Client-Book.html">Home</a></td><td align="right" valign="top" 
width="40%">&#160;Chapter&#160;2.&#160;Document Scope And Intended 
Audience</td></tr></table></div></div>
\ No newline at end of file
+      with AMQP 0-10 protocol, please refer to <a class="link" 
href="/releases/qpid-java-6.0.2/jms-client-0-10/book/" target="_top">Using the 
Qpid AMQP 0-10 JMS Client</a>.</p></div></div><div class="navfooter"><hr 
/><table summary="Navigation footer" width="100%"><tr><td align="left" 
width="40%"><a accesskey="p" href="JMS-Client-Book.html">Prev</a>&#160;</td><td 
align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a 
accesskey="n" 
href="JMS-Client-0-8-Document-Scope-And-Intended-Audience.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">Qpid JMS Client for AMQP protocols 0-8, 
0-9 and 0-9-1&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="JMS-Client-Book.html">Home</a></td><td align="right" valign="top" 
width="40%">&#160;Chapter&#160;2.&#160;Document Scope And Intended 
Audience</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-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html.in
----------------------------------------------------------------------
diff --git 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html.in
 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html.in
index 3c54830..5bc34da 100644
--- 
a/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html.in
+++ 
b/input/releases/qpid-java-6.0.2/jms-client-0-8/book/JMS-Client-0-8-JMS-Getting-And-Dependencies.html.in
@@ -6,6 +6,6 @@
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.qpid&lt;/groupId&gt;
       &lt;artifactId&gt;qpid-client&lt;/artifactId&gt;
-      &lt;version&gt;6.0.3-SNAPSHOT&lt;/version&gt;
+      &lt;version&gt;6.0.2&lt;/version&gt;
     &lt;/dependency&gt;
     </pre><p><a class="xref" href="JMS-Client-0-8-Appendix-Maven.html" 
title="Appendix&#160;B.&#160;Minimal Maven POM">Appendix&#160;B, <em>Minimal 
Maven POM</em></a> illustrates a minimal Maven POM required to use the Qpid 
Client.</p></div></div><div class="navfooter"><hr /><table summary="Navigation 
footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" 
href="JMS-Client-0-8-Document-Scope-And-Intended-Audience.html">Prev</a>&#160;</td><td
 align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a 
accesskey="n" 
href="JMS-Client-0-8-JMS-Getting-And-Dependencies-Dependencies.html">Next</a></td></tr><tr><td
 align="left" valign="top" width="40%">Chapter&#160;2.&#160;Document Scope And 
Intended Audience&#160;</td><td align="center" width="20%"><a accesskey="h" 
href="JMS-Client-Book.html">Home</a></td><td align="right" valign="top" 
width="40%">&#160;3.2.&#160;Dependencies</td></tr></table></div></div>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to