You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by jr...@apache.org on 2013/07/11 22:13:32 UTC

svn commit: r1502347 [6/13] - in /qpid/site: ./ docs/ docs/components/cpp-broker-tools/ docs/components/cpp-broker/ docs/components/java-broker/ docs/components/messaging-api/ docs/components/messenger/ docs/components/messenger/book/ docs/components/p...

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/ch05s03.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/ch05s03.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/ch05s03.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/ch05s03.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>5.3.&#160;.NET Binding Class Mapping to Underlying C++ Messaging API</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>5.3.&#160;.NET Binding Class Mapping to Underlying C++ Messaging API</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">5.3.&#160;.NET Binding Class Mapping to Underlying C++ Messaging API</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="ch05s02.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;5.&#160;The .NET Binding for the C++ Messaging Client</th><td align="right" width="20%">&#160;</td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="idm252989256848"></a>5.3.&#160;.NET Binding Class Mapping to Underlying C++ Messaging API</h2></div></div></div><p>This chapter describes the specific mappings between
       classes in the .NET Binding and the underlying C++ Messaging
       API.</p><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252989255600"></a>5.3.1.&#160;.NET Binding for the C++ Messaging API Class: Address</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Address"></a><p class="title"><strong>Table&#160;5.9.&#160;.NET Binding for the C++ Messaging API Class: Address</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Address"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Address</th></tr><tr><th>Language</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class Address</td></tr><tr><td>.NET</td><td>public ref class Address</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Address();</td></tr><tr><td>.NET</td><td>public Address();</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Add
 ress(const std::string&amp; address);</td></tr><tr><td>.NET</td><td>public Address(string address);</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Address(const std::string&amp; name, const std::string&amp; subject, const qpid::types::Variant::Map&amp; options, const std::string&amp; type = "");</td></tr><tr><td>.NET</td><td>public Address(string name, string subject, Dictionary&lt;string, object&gt; options);</td></tr><tr><td>.NET</td><td>public Address(string name, string subject, Dictionary&lt;string, object&gt; options, string type);</td></tr><tr><td align="center" colspan="2">Copy constructor</td></tr><tr><td>C++</td><td>Address(const Address&amp; address);</td></tr><tr><td>.NET</td><td>public Address(Address address);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~Address();</td></tr><tr><td>.NET</td><td>~Address();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a<
 /td></tr><tr><td>.NET</td><td>!Address();</td></tr><tr><td align="center" colspan="2">Copy assignment operator</td></tr><tr><td>C++</td><td>Address&amp; operator=(const Address&amp;);</td></tr><tr><td>.NET</td><td>public Address op_Assign(Address rhs);</td></tr><tr><td align="center" colspan="2">Property: Name</td></tr><tr><td>C++</td><td>const std::string&amp; getName() const;</td></tr><tr><td>C++</td><td>void setName(const std::string&amp;);</td></tr><tr><td>.NET</td><td>public string Name { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Subject</td></tr><tr><td>C++</td><td>const std::string&amp; getSubject() const;</td></tr><tr><td>C++</td><td>void setSubject(const std::string&amp;);</td></tr><tr><td>.NET</td><td>public string Subject { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Options</td></tr><tr><td>C++</td><td>const qpid::types::Variant::Map&amp; getOptions() const;</td></tr><tr><td>C++</td><td>qpid::types::Variant::Map&amp; getOptio
 ns();</td></tr><tr><td>C++</td><td>void setOptions(const qpid::types::Variant::Map&amp;);</td></tr><tr><td>.NET</td><td>public Dictionary&lt;string, object&gt; Options { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Type</td></tr><tr><td>C++</td><td>std::string getType() const;</td></tr><tr><td>C++</td><td>void setType(const std::string&amp;);</td></tr><tr><td>.NET</td><td>public string Type { get; set; }</td></tr><tr><td align="center" colspan="2">Miscellaneous</td></tr><tr><td>C++</td><td>std::string str() const;</td></tr><tr><td>.NET</td><td>public string ToStr();</td></tr><tr><td align="center" colspan="2">Miscellaneous</td></tr><tr><td>C++</td><td>operator bool() const;</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Miscellaneous</td></tr><tr><td>C++</td><td>bool operator !() const;</td></tr><tr><td>.NET</td><td>n/a</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage">
 <div><div><h3 class="title"><a id="idm252989184768"></a>5.3.2.&#160;.NET Binding for the C++ Messaging API Class: Connection</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Connection"></a><p class="title"><strong>Table&#160;5.10.&#160;.NET Binding for the C++ Messaging API Class: Connection</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Connection"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Connection</th></tr><tr><th>Language</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class Connection : public qpid::messaging::Handle&lt;ConnectionImpl&gt;</td></tr><tr><td>.NET</td><td>public ref class Connection</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Connection(ConnectionImpl* impl);</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Constructor</td>
 </tr><tr><td>C++</td><td>Connection();</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Connection(const std::string&amp; url, const qpid::types::Variant::Map&amp; options = qpid::types::Variant::Map());</td></tr><tr><td>.NET</td><td>public Connection(string url);</td></tr><tr><td>.NET</td><td>public Connection(string url, Dictionary&lt;string, object&gt; options);</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Connection(const std::string&amp; url, const std::string&amp; options);</td></tr><tr><td>.NET</td><td>public Connection(string url, string options);  </td></tr><tr><td align="center" colspan="2">Copy Constructor</td></tr><tr><td>C++</td><td>Connection(const Connection&amp;);</td></tr><tr><td>.NET</td><td>public Connection(Connection connection);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~Connection();</td></tr><tr><td>.NET</td><
 td>~Connection();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>!Connection();</td></tr><tr><td align="center" colspan="2">Copy assignment operator</td></tr><tr><td>C++</td><td>Connection&amp; operator=(const Connection&amp;);</td></tr><tr><td>.NET</td><td>public Connection op_Assign(Connection rhs);</td></tr><tr><td align="center" colspan="2">Method: SetOption</td></tr><tr><td>C++</td><td>void setOption(const std::string&amp; name, const qpid::types::Variant&amp; value);</td></tr><tr><td>.NET</td><td>public void SetOption(string name, object value);</td></tr><tr><td align="center" colspan="2">Method: open</td></tr><tr><td>C++</td><td>void open();</td></tr><tr><td>.NET</td><td>public void Open();</td></tr><tr><td align="center" colspan="2">Property: isOpen</td></tr><tr><td>C++</td><td>bool isOpen();</td></tr><tr><td>.NET</td><td>public bool IsOpen { get; }</td></tr><tr><td align="center" colspan="2">Method: close
 </td></tr><tr><td>C++</td><td>void close();</td></tr><tr><td>.NET</td><td>public void Close();</td></tr><tr><td align="center" colspan="2">Method: createTransactionalSession</td></tr><tr><td>C++</td><td>Session createTransactionalSession(const std::string&amp; name = std::string());</td></tr><tr><td>.NET</td><td>public Session CreateTransactionalSession();</td></tr><tr><td>.NET</td><td>public Session CreateTransactionalSession(string name);</td></tr><tr><td align="center" colspan="2">Method: createSession</td></tr><tr><td>C++</td><td>Session createSession(const std::string&amp; name = std::string());</td></tr><tr><td>.NET</td><td>public Session CreateSession();</td></tr><tr><td>.NET</td><td>public Session CreateSession(string name);</td></tr><tr><td align="center" colspan="2">Method: getSession</td></tr><tr><td>C++</td><td>Session getSession(const std::string&amp; name) const;</td></tr><tr><td>.NET</td><td>public Session GetSession(string name);</td></tr><tr><td align="center" colsp
 an="2">Property: AuthenticatedUsername</td></tr><tr><td>C++</td><td>std::string getAuthenticatedUsername();</td></tr><tr><td>.NET</td><td>public string GetAuthenticatedUsername();</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252989109648"></a>5.3.3.&#160;.NET Binding for the C++ Messaging API Class: Duration</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Duration"></a><p class="title"><strong>Table&#160;5.11.&#160;.NET Binding for the C++ Messaging API Class: Duration</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Duration"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Duration</th></tr><tr><th>Language</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class Duration</td></tr><tr><td>.NET</td><td>public ref clas
 s Duration</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>explicit Duration(uint64_t milliseconds);</td></tr><tr><td>.NET</td><td>public Duration(ulong mS);</td></tr><tr><td align="center" colspan="2">Copy constructor</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>public Duration(Duration rhs);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>default</td></tr><tr><td>.NET</td><td>default</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>default</td></tr><tr><td align="center" colspan="2">Property: Milliseconds</td></tr><tr><td>C++</td><td>uint64_t getMilliseconds() const;</td></tr><tr><td>.NET</td><td>public ulong Milliseconds { get; }</td></tr><tr><td align="center" colspan="2">Operator: *</td></tr><tr><td>C++</td><td>Duration operator*(const Duration&amp; duration, uint64_t multiplier);</td></tr><tr><td>.NET</td><td>public stat
 ic Duration operator *(Duration dur, ulong multiplier);</td></tr><tr><td>.NET</td><td>public static Duration Multiply(Duration dur, ulong multiplier);</td></tr><tr><td>C++</td><td>Duration operator*(uint64_t multiplier, const Duration&amp; duration);</td></tr><tr><td>.NET</td><td>public static Duration operator *(ulong multiplier, Duration dur);</td></tr><tr><td>.NET</td><td>public static Duration Multiply(ulong multiplier, Duration dur);</td></tr><tr><td align="center" colspan="2">Constants</td></tr><tr><td>C++</td><td>static const Duration FOREVER;</td></tr><tr><td>C++</td><td>static const Duration IMMEDIATE;</td></tr><tr><td>C++</td><td>static const Duration SECOND;</td></tr><tr><td>C++</td><td>static const Duration MINUTE;</td></tr><tr><td>.NET</td><td>public sealed class DurationConstants</td></tr><tr><td>.NET</td><td>public static Duration FORVER;</td></tr><tr><td>.NET</td><td>public static Duration IMMEDIATE;</td></tr><tr><td>.NET</td><td>public static Duration MINUTE;</td></
 tr><tr><td>.NET</td><td>public static Duration SECOND;</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252989060320"></a>5.3.4.&#160;.NET Binding for the C++ Messaging API Class: FailoverUpdates</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-FailoverUpdates"></a><p class="title"><strong>Table&#160;5.12.&#160;.NET Binding for the C++ Messaging API Class: FailoverUpdates</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: FailoverUpdates"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: FailoverUpdates</th></tr><tr><th>Language</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class FailoverUpdates</td></tr><tr><td>.NET</td><td>public ref class FailoverUpdates</td></tr><tr><td align="center" colspan="2">Constructor</td></tr>
 <tr><td>C++</td><td>FailoverUpdates(Connection&amp; connection);</td></tr><tr><td>.NET</td><td>public FailoverUpdates(Connection connection);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~FailoverUpdates();</td></tr><tr><td>.NET</td><td>~FailoverUpdates();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>!FailoverUpdates();</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252989039200"></a>5.3.5.&#160;.NET Binding for the C++ Messaging API Class: Message</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Message"></a><p class="title"><strong>Table&#160;5.13.&#160;.NET Binding for the C++ Messaging API Class: Message</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Message"><colgroup><col class="c1
 " /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Message</th></tr><tr><th>Language</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class Message</td></tr><tr><td>.NET</td><td>public ref class Message</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Message(const std::string&amp; bytes = std::string());</td></tr><tr><td>.NET</td><td>Message();</td></tr><tr><td>.NET</td><td>Message(System::String ^ theStr);</td></tr><tr><td>.NET</td><td>Message(System::Object ^ theValue);</td></tr><tr><td>.NET</td><td>Message(array&lt;System::Byte&gt; ^ bytes);</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>C++</td><td>Message(const char*, size_t);</td></tr><tr><td>.NET</td><td>public Message(byte[] bytes, int offset, int size);</td></tr><tr><td>	</td><td>Copy constructor</td></tr><tr><td>C++</td><td>Message(const Message&amp;);</td></tr><tr><td>.NET</td><td>public Message(Message mes
 sage);</td></tr><tr><td>	</td><td>Copy assignment operator</td></tr><tr><td>C++</td><td>Message&amp; operator=(const Message&amp;);</td></tr><tr><td>.NET</td><td>public Message op_Assign(Message rhs);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~Message();</td></tr><tr><td>.NET</td><td>~Message();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>!Message()</td></tr><tr><td align="center" colspan="2">Property: ReplyTo</td></tr><tr><td>C++</td><td>void setReplyTo(const Address&amp;);</td></tr><tr><td>C++</td><td>const Address&amp; getReplyTo() const;</td></tr><tr><td>.NET</td><td>public Address ReplyTo { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Subject</td></tr><tr><td>C++</td><td>void setSubject(const std::string&amp;);</td></tr><tr><td>C++</td><td>const std::string&amp; getSubject() const;</td></tr><tr><td>.NET</td><td>public string Subject { get; set;
  }</td></tr><tr><td align="center" colspan="2">Property: ContentType</td></tr><tr><td>C++</td><td>void setContentType(const std::string&amp;);</td></tr><tr><td>C++</td><td>const std::string&amp; getContentType() const;</td></tr><tr><td>.NET</td><td>public string ContentType { get; set; }</td></tr><tr><td align="center" colspan="2">Property: MessageId</td></tr><tr><td>C++</td><td>void setMessageId(const std::string&amp;);</td></tr><tr><td>C++</td><td>const std::string&amp; getMessageId() const;</td></tr><tr><td>.NET</td><td>public string MessageId { get; set; }</td></tr><tr><td align="center" colspan="2">Property: UserId</td></tr><tr><td>C++</td><td>void setUserId(const std::string&amp;);</td></tr><tr><td>C++</td><td>const std::string&amp; getUserId() const;</td></tr><tr><td>.NET</td><td>public string UserId { get; set; }</td></tr><tr><td align="center" colspan="2">Property: CorrelationId</td></tr><tr><td>C++</td><td>void setCorrelationId(const std::string&amp;);</td></tr><tr><td>C++
 </td><td>const std::string&amp; getCorrelationId() const;</td></tr><tr><td>.NET</td><td>public string CorrelationId { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Priority</td></tr><tr><td>C++</td><td>void setPriority(uint8_t);</td></tr><tr><td>C++</td><td>uint8_t getPriority() const;</td></tr><tr><td>.NET</td><td>public byte Priority { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Ttl</td></tr><tr><td>C++</td><td>void setTtl(Duration ttl);</td></tr><tr><td>C++</td><td>Duration getTtl() const;</td></tr><tr><td>.NET</td><td>public Duration Ttl { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Durable</td></tr><tr><td>C++</td><td>void setDurable(bool durable);</td></tr><tr><td>C++</td><td>bool getDurable() const;</td></tr><tr><td>.NET</td><td>public bool Durable { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Redelivered</td></tr><tr><td>C++</td><td>bool getRedelivered() const;</td></tr><tr><td>C++</td><td>
 void setRedelivered(bool);</td></tr><tr><td>.NET</td><td>public bool Redelivered { get; set; }</td></tr><tr><td align="center" colspan="2">Method: SetProperty</td></tr><tr><td>C++</td><td>void setProperty(const std::string&amp;, const qpid::types::Variant&amp;);</td></tr><tr><td>.NET</td><td>public void SetProperty(string name, object value);</td></tr><tr><td align="center" colspan="2">Property: Properties</td></tr><tr><td>C++</td><td>const qpid::types::Variant::Map&amp; getProperties() const;</td></tr><tr><td>C++</td><td>qpid::types::Variant::Map&amp; getProperties();</td></tr><tr><td>.NET</td><td>public Dictionary&lt;string, object&gt; Properties { get; set; }</td></tr><tr><td align="center" colspan="2">Method: SetContent</td></tr><tr><td>C++</td><td>void setContent(const std::string&amp;);</td></tr><tr><td>C++</td><td>void setContent(const char* chars, size_t count);</td></tr><tr><td>.NET</td><td>public void SetContent(byte[] bytes);</td></tr><tr><td>.NET</td><td>public void SetC
 ontent(string content);</td></tr><tr><td>.NET</td><td>public void SetContent(byte[] bytes, int offset, int size);</td></tr><tr><td align="center" colspan="2">Method: GetContent</td></tr><tr><td>C++</td><td>std::string getContent() const;</td></tr><tr><td>.NET</td><td>public string GetContent();</td></tr><tr><td>.NET</td><td>public void GetContent(byte[] arr);</td></tr><tr><td>.NET</td><td>public void GetContent(Collection&lt;object&gt; __p1);</td></tr><tr><td>.NET</td><td>public void GetContent(Dictionary&lt;string, object&gt; dict);</td></tr><tr><td align="center" colspan="2">Method: GetContentPtr</td></tr><tr><td>C++</td><td>const char* getContentPtr() const;</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Property: ContentSize</td></tr><tr><td>C++</td><td>size_t getContentSize() const;</td></tr><tr><td>.NET</td><td>public ulong ContentSize { get; }</td></tr><tr><td align="center" colspan="2">Struct: EncodingException</td></tr><tr><td>C++</td><td>stru
 ct EncodingException : qpid::types::Exception</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Method: decode</td></tr><tr><td>C++</td><td>void decode(const Message&amp; message, qpid::types::Variant::Map&amp; map,	const std::string&amp; encoding = std::string());</td></tr><tr><td>C++</td><td>void decode(const Message&amp; message, qpid::types::Variant::List&amp; list, const std::string&amp; encoding = std::string());</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Method: encode</td></tr><tr><td>C++</td><td>void encode(const qpid::types::Variant::Map&amp; map, Message&amp; message, const std::string&amp; encoding = std::string());</td></tr><tr><td>C++</td><td>void encode(const qpid::types::Variant::List&amp; list, Message&amp; message, const std::string&amp; encoding = std::string());</td></tr><tr><td>.NET</td><td>n/a</td></tr><tr><td align="center" colspan="2">Method: AsString</td></tr><tr><td>C++</td><td>n/a</td></tr><tr>
 <td>.NET</td><td>public string AsString(object obj);</td></tr><tr><td>.NET</td><td>public string ListAsString(Collection&lt;object&gt; list);</td></tr><tr><td>.NET</td><td>public string MapAsString(Dictionary&lt;string, object&gt; dict);</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252988900960"></a>5.3.6.&#160;.NET Binding for the C++ Messaging API Class: Receiver</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Receiver"></a><p class="title"><strong>Table&#160;5.14.&#160;.NET Binding for the C++ Messaging API Class: Receiver</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Receiver"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Receiver</th></tr><tr><th>Language</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>cl
 ass Receiver</td></tr><tr><td>.NET</td><td>public ref class Receiver</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>.NET</td><td>Constructed object is returned by Session.CreateReceiver</td></tr><tr><td align="center" colspan="2">Copy constructor</td></tr><tr><td>C++</td><td>Receiver(const Receiver&amp;);</td></tr><tr><td>.NET</td><td>public Receiver(Receiver receiver);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~Receiver();</td></tr><tr><td>.NET</td><td>~Receiver();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>!Receiver()</td></tr><tr><td align="center" colspan="2">Copy assignment operator</td></tr><tr><td>C++</td><td>Receiver&amp; operator=(const Receiver&amp;);</td></tr><tr><td>.NET</td><td>public Receiver op_Assign(Receiver rhs);</td></tr><tr><td align="center" colspan="2">Method: Get</td></tr><tr><td>C++</td><td>bool get(Message&amp; message
 , Duration timeout=Duration::FOREVER);</td></tr><tr><td>.NET</td><td>public bool Get(Message mmsgp);</td></tr><tr><td>.NET</td><td>public bool Get(Message mmsgp, Duration durationp);</td></tr><tr><td align="center" colspan="2">Method: Get</td></tr><tr><td>C++</td><td>Message get(Duration timeout=Duration::FOREVER);</td></tr><tr><td>.NET</td><td>public Message Get();</td></tr><tr><td>.NET</td><td>public Message Get(Duration durationp);</td></tr><tr><td align="center" colspan="2">Method: Fetch</td></tr><tr><td>C++</td><td>bool fetch(Message&amp; message, Duration timeout=Duration::FOREVER);</td></tr><tr><td>.NET</td><td>public bool Fetch(Message mmsgp);</td></tr><tr><td>.NET</td><td>public bool Fetch(Message mmsgp, Duration duration);</td></tr><tr><td align="center" colspan="2">Method: Fetch</td></tr><tr><td>C++</td><td>Message fetch(Duration timeout=Duration::FOREVER);</td></tr><tr><td>.NET</td><td>public Message Fetch();</td></tr><tr><td>.NET</td><td>public Message Fetch(Duration du
 rationp);</td></tr><tr><td align="center" colspan="2">Property: Capacity</td></tr><tr><td>C++</td><td>void setCapacity(uint32_t);</td></tr><tr><td>C++</td><td>uint32_t getCapacity();</td></tr><tr><td>.NET</td><td>public uint Capacity { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Available</td></tr><tr><td>C++</td><td>uint32_t getAvailable();</td></tr><tr><td>.NET</td><td>public uint Available { get; }</td></tr><tr><td align="center" colspan="2">Property: Unsettled</td></tr><tr><td>C++</td><td>uint32_t getUnsettled();</td></tr><tr><td>.NET</td><td>public uint Unsettled { get; }</td></tr><tr><td align="center" colspan="2">Method: Close</td></tr><tr><td>C++</td><td>void close();</td></tr><tr><td>.NET</td><td>public void Close();</td></tr><tr><td align="center" colspan="2">Property: IsClosed</td></tr><tr><td>C++</td><td>bool isClosed() const;</td></tr><tr><td>.NET</td><td>public bool IsClosed { get; }</td></tr><tr><td align="center" colspan="2">Property: Name</td><
 /tr><tr><td>C++</td><td>const std::string&amp; getName() const;</td></tr><tr><td>.NET</td><td>public string Name { get; }</td></tr><tr><td align="center" colspan="2">Property: Session</td></tr><tr><td>C++</td><td>Session getSession() const;</td></tr><tr><td>.NET</td><td>public Session Session { get; }</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252988825536"></a>5.3.7.&#160;.NET Binding for the C++ Messaging API Class: Sender</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Sender"></a><p class="title"><strong>Table&#160;5.15.&#160;.NET Binding for the C++ Messaging API Class: Sender</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Sender"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Sender</th></tr><tr><th>Language</th><t
 h>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class Sender</td></tr><tr><td>.NET</td><td>public ref class Sender</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>.NET</td><td>Constructed object is returned by Session.CreateSender</td></tr><tr><td align="center" colspan="2">Copy constructor</td></tr><tr><td>C++</td><td>Sender(const Sender&amp;);</td></tr><tr><td>.NET</td><td>public Sender(Sender sender);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~Sender();</td></tr><tr><td>.NET</td><td>~Sender();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>!Sender()</td></tr><tr><td align="center" colspan="2">Copy assignment operator</td></tr><tr><td>C++</td><td>Sender&amp; operator=(const Sender&amp;);</td></tr><tr><td>.NET</td><td>public Sender op_Assign(Sender rhs);</td></tr><tr><td align="center" colspan="2">Method: Send</td></tr><tr><td>C++</td><td>voi
 d send(const Message&amp; message, bool sync=false);</td></tr><tr><td>.NET</td><td>public void Send(Message mmsgp);</td></tr><tr><td>.NET</td><td>public void Send(Message mmsgp, bool sync);</td></tr><tr><td align="center" colspan="2">Method: Close</td></tr><tr><td>C++</td><td>void close();</td></tr><tr><td>.NET</td><td>public void Close();</td></tr><tr><td align="center" colspan="2">Property: Capacity</td></tr><tr><td>C++</td><td>void setCapacity(uint32_t);</td></tr><tr><td>C++</td><td>uint32_t getCapacity();</td></tr><tr><td>.NET</td><td>public uint Capacity { get; set; }</td></tr><tr><td align="center" colspan="2">Property: Available</td></tr><tr><td>C++</td><td>uint32_t getAvailable();</td></tr><tr><td>.NET</td><td>public uint Available { get; }</td></tr><tr><td align="center" colspan="2">Property: Unsettled</td></tr><tr><td>C++</td><td>uint32_t getUnsettled();</td></tr><tr><td>.NET</td><td>public uint Unsettled { get; }</td></tr><tr><td align="center" colspan="2">Property: Name<
 /td></tr><tr><td>C++</td><td>const std::string&amp; getName() const;</td></tr><tr><td>.NET</td><td>public string Name { get; }</td></tr><tr><td align="center" colspan="2">Property: Session</td></tr><tr><td>C++</td><td>Session getSession() const;</td></tr><tr><td>.NET</td><td>public Session Session { get; }</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252988769024"></a>5.3.8.&#160;.NET Binding for the C++ Messaging API Class: Session</h3></div></div></div><div class="table"><a id="table-Dotnet-Binding-Session"></a><p class="title"><strong>Table&#160;5.16.&#160;.NET Binding for the C++ Messaging API Class: Session</strong></p><div class="table-contents"><table border="1" summary=".NET Binding for the C++ Messaging API Class: Session"><colgroup><col class="c1" /><col class="c2" /></colgroup><thead><tr><th align="center" colspan="2">.NET Binding Class: Session</th></tr><tr><th>Langu
 age</th><th>Syntax</th></tr></thead><tbody><tr><td>C++</td><td>class Session</td></tr><tr><td>.NET</td><td>public ref class Session</td></tr><tr><td align="center" colspan="2">Constructor</td></tr><tr><td>.NET</td><td>Constructed object is returned by Connection.CreateSession</td></tr><tr><td align="center" colspan="2">Copy constructor</td></tr><tr><td>C++</td><td>Session(const Session&amp;);</td></tr><tr><td>.NET</td><td>public Session(Session session);</td></tr><tr><td align="center" colspan="2">Destructor</td></tr><tr><td>C++</td><td>~Session();</td></tr><tr><td>.NET</td><td>~Session();</td></tr><tr><td align="center" colspan="2">Finalizer</td></tr><tr><td>C++</td><td>n/a</td></tr><tr><td>.NET</td><td>!Session()</td></tr><tr><td align="center" colspan="2">Copy assignment operator</td></tr><tr><td>C++</td><td>Session&amp; operator=(const Session&amp;);</td></tr><tr><td>.NET</td><td>public Session op_Assign(Session rhs);</td></tr><tr><td align="center" colspan="2">Method: Close</td
 ></tr><tr><td>C++</td><td>void close();</td></tr><tr><td>.NET</td><td>public void Close();</td></tr><tr><td align="center" colspan="2">Method: Commit</td></tr><tr><td>C++</td><td>void commit();</td></tr><tr><td>.NET</td><td>public void Commit();</td></tr><tr><td align="center" colspan="2">Method: Rollback</td></tr><tr><td>C++</td><td>void rollback();</td></tr><tr><td>.NET</td><td>public void Rollback();</td></tr><tr><td align="center" colspan="2">Method: Acknowledge</td></tr><tr><td>C++</td><td>void acknowledge(bool sync=false);</td></tr><tr><td>C++</td><td>void acknowledge(Message&amp;, bool sync=false);</td></tr><tr><td>.NET</td><td>public void Acknowledge();</td></tr><tr><td>.NET</td><td>public void Acknowledge(bool sync);</td></tr><tr><td>.NET</td><td>public void Acknowledge(Message __p1);</td></tr><tr><td>.NET</td><td>public void Acknowledge(Message __p1, bool __p2);</td></tr><tr><td align="center" colspan="2">Method: Reject</td></tr><tr><td>C++</td><td>void reject(Message&amp;
 );</td></tr><tr><td>.NET</td><td>public void Reject(Message __p1);</td></tr><tr><td align="center" colspan="2">Method: Release</td></tr><tr><td>C++</td><td>void release(Message&amp;);</td></tr><tr><td>.NET</td><td>public void Release(Message __p1);</td></tr><tr><td align="center" colspan="2">Method: Sync</td></tr><tr><td>C++</td><td>void sync(bool block=true);</td></tr><tr><td>.NET</td><td>public void Sync();</td></tr><tr><td>.NET</td><td>public void Sync(bool block);</td></tr><tr><td align="center" colspan="2">Property: Receivable</td></tr><tr><td>C++</td><td>uint32_t getReceivable();</td></tr><tr><td>.NET</td><td>public uint Receivable { get; }</td></tr><tr><td align="center" colspan="2">Property: UnsettledAcks</td></tr><tr><td>C++</td><td>uint32_t getUnsettledAcks();</td></tr><tr><td>.NET</td><td>public uint UnsetledAcks { get; }</td></tr><tr><td align="center" colspan="2">Method: NextReceiver</td></tr><tr><td>C++</td><td>bool nextReceiver(Receiver&amp;, Duration timeout=Duration
 ::FOREVER);</td></tr><tr><td>.NET</td><td>public bool NextReceiver(Receiver rcvr);</td></tr><tr><td>.NET</td><td>public bool NextReceiver(Receiver rcvr, Duration timeout);</td></tr><tr><td align="center" colspan="2">Method: NextReceiver</td></tr><tr><td>C++</td><td>Receiver nextReceiver(Duration timeout=Duration::FOREVER);</td></tr><tr><td>.NET</td><td>public Receiver NextReceiver();</td></tr><tr><td>.NET</td><td>public Receiver NextReceiver(Duration timeout);</td></tr><tr><td align="center" colspan="2">Method: CreateSender</td></tr><tr><td>C++</td><td>Sender createSender(const Address&amp; address);</td></tr><tr><td>.NET</td><td>public Sender CreateSender(Address address);</td></tr><tr><td align="center" colspan="2">Method: CreateSender</td></tr><tr><td>C++</td><td>Sender createSender(const std::string&amp; address);</td></tr><tr><td>.NET</td><td>public Sender CreateSender(string address);</td></tr><tr><td align="center" colspan="2">Method: CreateReceiver</td></tr><tr><td>C++</td><
 td>Receiver createReceiver(const Address&amp; address);</td></tr><tr><td>.NET</td><td>public Receiver CreateReceiver(Address address);</td></tr><tr><td align="center" colspan="2">Method: CreateReceiver</td></tr><tr><td>C++</td><td>Receiver createReceiver(const std::string&amp; address);</td></tr><tr><td>.NET</td><td>public Receiver CreateReceiver(string address);</td></tr><tr><td align="center" colspan="2">Method: GetSender</td></tr><tr><td>C++</td><td>Sender getSender(const std::string&amp; name) const;</td></tr><tr><td>.NET</td><td>public Sender GetSender(string name);</td></tr><tr><td align="center" colspan="2">Method: GetReceiver</td></tr><tr><td>C++</td><td>Receiver getReceiver(const std::string&amp; name) const;</td></tr><tr><td>.NET</td><td>public Receiver GetReceiver(string name);</td></tr><tr><td align="center" colspan="2">Property: Connection</td></tr><tr><td>C++</td><td>Connection getConnection() const;</td></tr><tr><td>.NET</td><td>public Connection Connection { get; }</
 td></tr><tr><td align="center" colspan="2">Property: HasError</td></tr><tr><td>C++</td><td>bool hasError();</td></tr><tr><td>.NET</td><td>public bool HasError { get; }</td></tr><tr><td align="center" colspan="2">Method: CheckError</td></tr><tr><td>C++</td><td>void checkError();</td></tr><tr><td>.NET</td><td>public void CheckError();</td></tr></tbody></table></div></div><br class="table-break" /></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="idm252988656640"></a>5.3.9.&#160;.NET Binding Class: SessionReceiver</h3></div></div></div><p>

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/connection-options.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/connection-options.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/connection-options.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/connection-options.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.10.&#160;Connection Options</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.10.&#160;Connection Options</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">2.10.&#160;Connection Options</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="ch02s09.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;2.&#160;Using the Qpid Messaging API</th><td align="right" width="20%">&#160;<a accesskey="n" href="section-Maps.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="connection-options"></a>2.10.&#160;Connection Options</h2></div></div></div><p>
         Aspects of the connections behaviour can be controlled through
         specifying connection options. For example, connections can be

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/index.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/index.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/index.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/index.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li>Programming in Apache Qpid</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li>Programming in Apache Qpid</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">Programming in Apache Qpid</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="ch01.html">Next</a></td></tr></table><hr /></div><div class="book"><div class="titlepage"><div><div><h1 class="title"><a id="client-api-tutorial"></a>Programming in Apache Qpid</h1></div><div><h2 class="subtitle">Cross-Platform AMQP Messaging in Java JMS, .NET, C++, and Python</h2></div></div><hr /></div><div class="toc"><p><strong>Table of Contents</strong></p><dl class="toc"><dt><span class="chapter"><a href="ch01.html">1. Introduction</a></span></dt><dt><span class="chapter"><a href="ch02.html">2. Using the Qpid Messaging API</a></span></dt><dd><dl><dt><span class="section"><a href="ch02.html#idm252990278784">2.1. A Simple Messaging Program in C++</a></span></dt><dt><sp
 an class="section"><a href="ch02s02.html">2.2. A Simple Messaging Program in Python</a></span></dt><dt><span class="section"><a href="ch02s03.html">2.3. A Simple Messaging Program in .NET C#</a></span></dt><dt><span class="section"><a href="section-addresses.html">2.4. Addresses</a></span></dt><dd><dl><dt><span class="section"><a href="section-addresses.html#idm252995680112">2.4.1. Address Strings</a></span></dt><dt><span class="section"><a href="section-addresses.html#idm252995674256">2.4.2. Subjects</a></span></dt><dt><span class="section"><a href="section-addresses.html#idm252995630848">2.4.3. Address String Options</a></span></dt><dt><span class="section"><a href="section-addresses.html#section-address-string-bnf">2.4.4. Address String Grammar</a></span></dt></dl></dd><dt><span class="section"><a href="replay.html">2.5. Sender Capacity and Replay</a></span></dt><dt><span class="section"><a href="prefetch.html">2.6. Receiver Capacity (Prefetch)</a></span></dt><dt><span class="sec
 tion"><a href="acknowledgements.html">2.7. Acknowledging Received Messages</a></span></dt><dt><span class="section"><a href="ch02s08.html">2.8. Receiving Messages from Multiple Sources</a></span></dt><dt><span class="section"><a href="ch02s09.html">2.9. Transactions</a></span></dt><dt><span class="section"><a href="connection-options.html">2.10. Connection Options</a></span></dt><dt><span class="section"><a href="section-Maps.html">2.11. Maps and Lists in Message Content</a></span></dt><dd><dl><dt><span class="section"><a href="section-Maps.html#section-Python-Maps">2.11.1. Qpid Maps and Lists in Python</a></span></dt><dt><span class="section"><a href="section-Maps.html#section-cpp-Maps">2.11.2. Qpid Maps and Lists in C++</a></span></dt><dt><span class="section"><a href="section-Maps.html#section-dotnet-Maps">2.11.3. Qpid Maps and Lists in .NET</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s12.html">2.12. The Request / Response Pattern</a></span></dt><dt><span clas
 s="section"><a href="ch02s13.html">2.13. Performance Tips</a></span></dt><dt><span class="section"><a href="ch02s14.html">2.14. Cluster Failover</a></span></dt><dt><span class="section"><a href="ch02s15.html">2.15. Logging</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s15.html#idm252989770352">2.15.1. Logging in C++</a></span></dt><dt><span class="section"><a href="ch02s15.html#idm252989765344">2.15.2. Logging in Python</a></span></dt></dl></dd><dt><span class="section"><a href="section-amqp0-10-mapping.html">2.16. The AMQP 0-10 mapping</a></span></dt><dd><dl><dt><span class="section"><a href="section-amqp0-10-mapping.html#section-amqp0-10-message-props">2.16.1. 0-10 Message Property Keys</a></span></dt></dl></dd><dt><span class="section"><a href="Message-Groups-Guide.html">2.17. Using Message Groups</a></span></dt><dd><dl><dt><span class="section"><a href="Message-Groups-Guide.html#messagegroups-setup">2.17.1. Creating Message Group Queues</a></span></dt><dt><span c
 lass="section"><a href="Message-Groups-Guide.html#messagegroups-sending">2.17.2. Sending Grouped Messages</a></span></dt><dt><span class="section"><a href="Message-Groups-Guide.html#messagegroups-receiving">2.17.3. Receiving Grouped Messages</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="QpidJMS.html">3. Using the Qpid JMS client</a></span></dt><dd><dl><dt><span class="section"><a href="QpidJMS.html#idm252989695200">3.1. A Simple Messaging Program in Java JMS</a></span></dt><dt><span class="section"><a href="QpidJNDI.html">3.2. Apache Qpid JNDI Properties for AMQP Messaging</a></span></dt><dd><dl><dt><span class="section"><a href="QpidJNDI.html#idm252989652592">3.2.1. JNDI Properties for Apache Qpid</a></span></dt><dt><span class="section"><a href="QpidJNDI.html#section-jms-connection-url">3.2.2. Connection URLs</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s03.html">3.3. Java JMS Message Properties</a></span></dt><dt><span class="section"><a
  href="section-JMS-MapMessage.html">3.4. JMS MapMessage Types</a></span></dt><dt><span class="section"><a href="section-JMS-Logging.html">3.5. JMS Client Logging</a></span></dt><dt><span class="section"><a href="ch03s06.html">3.6. Configuring the JMS Client</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s06.html#client-jvm-properties">3.6.1. Qpid JVM Arguments</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="QpidWCF.html">4. Using the Qpid WCF client</a></span></dt><dd><dl><dt><span class="section"><a href="QpidWCF.html#idm252989366528">4.1. XML and Binary Bindings</a></span></dt><dt><span class="section"><a href="ch04s02.html">4.2. Endpoints</a></span></dt><dt><span class="section"><a href="ch04s03.html">4.3. Message Headers</a></span></dt><dt><span class="section"><a href="ch04s04.html">4.4. Security</a></span></dt><dt><span class="section"><a href="ch04s05.html">4.5. Transactions</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch05.
 html">5. The .NET Binding for the C++ Messaging Client</a></span></dt><dd><dl><dt><span class="section"><a href="ch05.html#idm252989319632">5.1. .NET Binding for the C++ Messaging Client Component Architecture</a></span></dt><dt><span class="section"><a href="ch05s02.html">5.2. .NET Binding for the C++ Messaging Client Examples</a></span></dt><dt><span class="section"><a href="ch05s03.html">5.3. .NET Binding Class Mapping to Underlying C++ Messaging API</a></span></dt><dd><dl><dt><span class="section"><a href="ch05s03.html#idm252989255600">5.3.1. .NET Binding for the C++ Messaging API Class: Address</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252989184768">5.3.2. .NET Binding for the C++ Messaging API Class: Connection</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252989109648">5.3.3. .NET Binding for the C++ Messaging API Class: Duration</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252989060320">5.3.4. .NET Binding for 
 the C++ Messaging API Class: FailoverUpdates</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252989039200">5.3.5. .NET Binding for the C++ Messaging API Class: Message</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252988900960">5.3.6. .NET Binding for the C++ Messaging API Class: Receiver</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252988825536">5.3.7. .NET Binding for the C++ Messaging API Class: Sender</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252988769024">5.3.8. .NET Binding for the C++ Messaging API Class: Session</a></span></dt><dt><span class="section"><a href="ch05s03.html#idm252988656640">5.3.9. .NET Binding Class: SessionReceiver</a></span></dt></dl></dd></dl></dd></dl></div><div class="list-of-tables"><p><strong>List of Tables</strong></p><dl><dt>2.1. <a href="section-addresses.html#idm252990036560">Address String Options</a></dt><dt>2.2. <a href="section-addresses.html#table-node-properti
 es">Node Properties</a></dt><dt>2.3. <a href="section-addresses.html#table-link-properties">Link Properties</a></dt><dt>2.4. <a href="connection-options.html#idm252989920592">Connection Options</a></dt><dt>2.5. <a href="section-Maps.html#tabl-Programming_in_Apache_Qpid-Qpid_Maps_in_Message_Content">Map and List Representation in Supported Languages</a></dt><dt>2.6. <a href="section-Maps.html#table-Python-Maps">Python Datatypes in Maps</a></dt><dt>2.7. <a href="section-Maps.html#table-cpp-Maps">C++ Datatypes in Maps</a></dt><dt>2.8. <a href="section-Maps.html#table-dotnet-Maps">Datatype Mapping between C++ and .NET binding</a></dt><dt>2.9. <a href="section-amqp0-10-mapping.html#table-amqp0-10-message-properties">Mapping to AMQP 0-10 Message Properties</a></dt><dt>3.1. <a href="QpidJNDI.html#idm252989651472">JNDI Properties supported by Apache Qpid</a></dt><dt>3.2. <a href="QpidJNDI.html#idm252989636160">Connection URL Properties</a></dt><dt>3.3. <a href="QpidJNDI.html#idm252989600752
 ">Broker List Options</a></dt><dt>3.4. <a href="ch03s03.html#idm252989560080">Java JMS Mapping to AMQP 0-10 Message Properties</a></dt><dt>3.5. <a href="section-JMS-MapMessage.html#table-Java-Maps">Java Datatypes in Maps</a></dt><dt>3.6. <a href="ch03s06.html#idm252989503264">Config Options For Connection Behaviour</a></dt><dt>3.7. <a href="ch03s06.html#idm252989491216">Config Options For Session Behaviour</a></dt><dt>3.8. <a href="ch03s06.html#idm252989477952">Config Options For Consumer Behaviour</a></dt><dt>3.9. <a href="ch03s06.html#idm252989462480">Config Options For Producer Behaviour</a></dt><dt>3.10. <a href="ch03s06.html#idm252989455360">Config Options For Threading</a></dt><dt>3.11. <a href="ch03s06.html#idm252989446352">Config Options For I/O</a></dt><dt>3.12. <a href="ch03s06.html#idm252989423184">Config Options For Security</a></dt><dt>3.13. <a href="ch03s06.html#idm252989408240">Config Options For Security - Standard JVM properties needed when using GSSAPI as the SASL 
 mechanism.</a></dt><dt>3.14. <a href="ch03s06.html#idm252989397920">Config Options For Security - Using SSL for securing connections or using EXTERNAL as the SASL mechanism.</a></dt><dt>3.15. <a href="ch03s06.html#idm252989384272">Config Options For Security - Standard JVM properties needed when Using SSL for securing connections or using EXTERNAL as the SASL mechanism.</a></dt><dt>4.1. <a href="QpidWCF.html#idm252989356496">WCF Binding Parameters</a></dt><dt>5.1. <a href="ch05.html#table-Dotnet-Binding-Component-Architecture">.NET Binding for the C++ Messaging Client Component Architecture</a></dt><dt>5.2. <a href="ch05s02.html#table-Dotnet-Binding-Example-Client-Server">Example : Client - Server</a></dt><dt>5.3. <a href="ch05s02.html#table-Dotnet-Binding-Example-MapSender-MapReceiver">Example : Map Sender &#8211; Map Receiver</a></dt><dt>5.4. <a href="ch05s02.html#table-Dotnet-Binding-Example-Spout-Drain">Example : Spout - Drain</a></dt><dt>5.5. <a href="ch05s02.html#table-Dotnet-
 Binding-Example-CallbackSender-CallbackReceiver">Example : Map Callback Sender &#8211; Map Callback Receiver</a></dt><dt>5.6. <a href="ch05s02.html#table-Dotnet-Binding-Example-DeclareQueues">Example - Declare Queues</a></dt><dt>5.7. <a href="ch05s02.html#table-Dotnet-Binding-Example-DirectSender-DirectReceiver">Example: Direct Sender - Direct Receiver</a></dt><dt>5.8. <a href="ch05s02.html#table-Dotnet-Binding-Example-Helloworld">Example: Hello World</a></dt><dt>5.9. <a href="ch05s03.html#table-Dotnet-Binding-Address">.NET Binding for the C++ Messaging API Class: Address</a></dt><dt>5.10. <a href="ch05s03.html#table-Dotnet-Binding-Connection">.NET Binding for the C++ Messaging API Class: Connection</a></dt><dt>5.11. <a href="ch05s03.html#table-Dotnet-Binding-Duration">.NET Binding for the C++ Messaging API Class: Duration</a></dt><dt>5.12. <a href="ch05s03.html#table-Dotnet-Binding-FailoverUpdates">.NET Binding for the C++ Messaging API Class: FailoverUpdates</a></dt><dt>5.13. <a h
 ref="ch05s03.html#table-Dotnet-Binding-Message">.NET Binding for the C++ Messaging API Class: Message</a></dt><dt>5.14. <a href="ch05s03.html#table-Dotnet-Binding-Receiver">.NET Binding for the C++ Messaging API Class: Receiver</a></dt><dt>5.15. <a href="ch05s03.html#table-Dotnet-Binding-Sender">.NET Binding for the C++ Messaging API Class: Sender</a></dt><dt>5.16. <a href="ch05s03.html#table-Dotnet-Binding-Session">.NET Binding for the C++ Messaging API Class: Session</a></dt></dl></div><div class="list-of-examples"><p><strong>List of Examples</strong></p><dl><dt>2.1. <a href="ch02.html#idm252991090320">"Hello world!" in C++</a></dt><dt>2.2. <a href="ch02s02.html#idm252992468576">"Hello world!" in Python</a></dt><dt>2.3. <a href="ch02s03.html#idm252991697952">"Hello world!" in .NET C#</a></dt><dt>2.4. <a href="section-addresses.html#idm252995461312">Queues</a></dt><dt>2.5. <a href="section-addresses.html#idm252995452352">Topics</a></dt><dt>2.6. <a href="section-addresses.html#idm25
 2995669968">Using subjects</a></dt><dt>2.7. <a href="section-addresses.html#idm252995647520">Subjects with multi-word keys</a></dt><dt>2.8. <a href="section-addresses.html#idm252990079968">Assertions on Nodes</a></dt><dt>2.9. <a href="section-addresses.html#idm252990070464">Creating a Queue Automatically</a></dt><dt>2.10. <a href="section-addresses.html#idm252990062304">Browsing a Queue</a></dt><dt>2.11. <a href="section-addresses.html#idm252990049120">Using the XML Exchange</a></dt><dt>2.12. <a href="ch02s08.html#idm252989945056">Receiving Messages from Multiple Sources</a></dt><dt>2.13. <a href="ch02s09.html#idm252989937008">Transactions</a></dt><dt>2.14. <a href="connection-options.html#idm252989931744">Specifying Connection Options in C++, Python, and .NET</a></dt><dt>2.15. <a href="section-Maps.html#idm252989864128">Sending Qpid Maps and Lists in Python</a></dt><dt>2.16. <a href="section-Maps.html#idm252989845312">Sending Qpid Maps and Lists in C++</a></dt><dt>2.17. <a href="se
 ction-Maps.html#idm252989821808">Sending Qpid Maps and Lists in .NET C#</a></dt><dt>2.18. <a href="ch02s12.html#idm252989796720">Request / Response Applications in C++</a></dt><dt>2.19. <a href="ch02s14.html#idm252989776992">Tracking cluster membership</a></dt><dt>2.20. <a href="section-amqp0-10-mapping.html#idm252989702160">Accessing the AMQP 0-10 Message Timestamp in Python</a></dt><dt>2.21. <a href="section-amqp0-10-mapping.html#idm252989699776">Accessing the AMQP 0-10 Message Timestamp in C++</a></dt><dt>2.22. <a href="Message-Groups-Guide.html#idm252989987376">Message Group Queue Creation - Python</a></dt><dt>2.23. <a href="Message-Groups-Guide.html#idm252989985728">Message Group Queue Creation - C++</a></dt><dt>2.24. <a href="Message-Groups-Guide.html#idm252989983872">Message Group Queue Creation - Java</a></dt><dt>2.25. <a href="Message-Groups-Guide.html#idm252995742880">Sending Grouped Messages - Python</a></dt><dt>2.26. <a href="Message-Groups-Guide.html#idm252995727472">Se
 nding Grouped Messages - C++</a></dt><dt>2.27. <a href="Message-Groups-Guide.html#idm252995725456">Sending Grouped Messages - Java</a></dt><dt>3.1. <a href="QpidJMS.html#idm252989693024">"Hello world!" in Java</a></dt><dt>3.2. <a href="QpidJMS.html#idm252989664048">JNDI Properties File for "Hello world!" example</a></dt><dt>3.3. <a href="QpidJNDI.html#idm252989654832">JNDI Properties File</a></dt><dt>3.4. <a href="QpidJNDI.html#idm252989605984">Broker Lists</a></dt><dt>3.5. <a href="section-JMS-MapMessage.html#idm252989540256">Sending a Java JMS MapMessage</a></dt><dt>3.6. <a href="section-JMS-Logging.html#idm252989516704">log4j Logging Properties</a></dt><dt>4.1. <a href="QpidWCF.html#idm252989364480">Traditional service model "Hello world!" example</a></dt><dt>4.2. <a href="QpidWCF.html#idm252989361152">Binary  "Hello world!" example using the channel model</a></dt></dl></div></div><div class="navfooter"><hr /><table summary="Navigation footer" width="100%"><tr><td align="left" wi
 dth="40%">&#160;</td><td align="center" width="20%">&#160;</td><td align="right" width="40%">&#160;<a accesskey="n" href="ch01.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;Introduction</td></tr></table></div></div>
       </div>
       <div id="bottom">

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/prefetch.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/prefetch.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/prefetch.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/prefetch.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.6.&#160;Receiver Capacity (Prefetch)</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.6.&#160;Receiver Capacity (Prefetch)</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">2.6.&#160;Receiver Capacity (Prefetch)</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="replay.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;2.&#160;Using the Qpid Messaging API</th><td align="right" width="20%">&#160;<a accesskey="n" href="acknowledgements.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="prefetch"></a>2.6.&#160;Receiver Capacity (Prefetch)</h2></div></div></div><p>By default, a receiver requests the next message from the
       server in response to each fetch call, resulting in messages being
       sent to the receiver one at a time. As in the case of sending, it

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/replay.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/replay.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/replay.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/replay.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.5.&#160;Sender Capacity and Replay</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.5.&#160;Sender Capacity and Replay</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">2.5.&#160;Sender Capacity and Replay</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="section-addresses.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;2.&#160;Using the Qpid Messaging API</th><td align="right" width="20%">&#160;<a accesskey="n" href="prefetch.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="replay"></a>2.5.&#160;Sender Capacity and Replay</h2></div></div></div><p>The send method of a sender has an optional second parameter
       that controls whether the send call is synchronous or not. A
       synchronous send call will block until the broker has confirmed

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-Logging.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-Logging.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-Logging.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-Logging.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>3.5.&#160;JMS Client Logging</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>3.5.&#160;JMS Client Logging</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">3.5.&#160;JMS Client Logging</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="section-JMS-MapMessage.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;3.&#160;Using the Qpid JMS client</th><td align="right" width="20%">&#160;<a accesskey="n" href="ch03s06.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="section-JMS-Logging"></a>3.5.&#160;JMS Client Logging</h2></div></div></div><p>The JMS Client logging is handled using the Simple Logging Facade for Java (<a class="ulink" href="http://www.slf4j.org/" target="_top">SLF4J</a>). As the name implies, slf4j is a facade that delegates to other logging systems like log4j or JDK 1.4 logging. For more information on how to configure slf4j for specific logging systems, please consult the slf4j documenta
 tion.</p><p>When using the log4j binding, please set the log level for org.apache.qpid explicitly. Otherwise log4j will default to DEBUG which will degrade performance considerably due to excessive logging. The recommended logging level for production is <code class="literal">WARN</code>.</p><p>The following example shows the logging properties used to configure client logging for slf4j using the log4j binding. These properties can be placed in a log4j.properties file and placed in the <code class="varname">CLASSPATH</code>, or they can be set explicitly using the <code class="literal">-Dlog4j.configuration</code> property.</p><div class="example"><a id="idm252989516704"></a><p class="title"><strong>Example&#160;3.6.&#160;log4j Logging Properties</strong></p><div class="example-contents"><pre class="programlisting">
 	log4j.logger.org.apache.qpid=WARN, console
 	log4j.additivity.org.apache.qpid=false

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-MapMessage.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-MapMessage.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-MapMessage.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/section-JMS-MapMessage.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>3.4.&#160;JMS MapMessage Types</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>3.4.&#160;JMS MapMessage Types</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">3.4.&#160;JMS MapMessage Types</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="ch03s03.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;3.&#160;Using the Qpid JMS client</th><td align="right" width="20%">&#160;<a accesskey="n" href="section-JMS-Logging.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="section-JMS-MapMessage"></a>3.4.&#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="idm252989540256"></a><p class="title"><strong>Example&#160;3.5.&#160;Sending a Java JMS MapMessage</strong></p><div
  class="example-contents"><pre class="programlisting">
 	import java.util.ArrayList;
 	import java.util.HashMap;

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/section-Maps.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/section-Maps.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/section-Maps.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/section-Maps.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.11.&#160;Maps and Lists in Message Content</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.11.&#160;Maps and Lists in Message Content</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">2.11.&#160;Maps and Lists in Message Content</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="connection-options.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;2.&#160;Using the Qpid Messaging API</th><td align="right" width="20%">&#160;<a accesskey="n" href="ch02s12.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="section-Maps"></a>2.11.&#160;Maps and Lists in Message Content</h2></div></div></div><p>Many messaging applications need to exchange data across
       languages and platforms, using the native datatypes of each
       programming language.</p><p>The Qpid Messaging API supports <code class="classname">map</code> and <code class="classname">list</code> in message content.

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/section-addresses.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/section-addresses.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/section-addresses.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/section-addresses.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.4.&#160;Addresses</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.4.&#160;Addresses</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">2.4.&#160;Addresses</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="ch02s03.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;2.&#160;Using the Qpid Messaging API</th><td align="right" width="20%">&#160;<a accesskey="n" href="replay.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="section-addresses"></a>2.4.&#160;Addresses</h2></div></div></div><p>An <em class="firstterm">address</em> is the name of a message
       target or message source.
 

Modified: qpid/site/docs/releases/qpid-0.20/programming/book/section-amqp0-10-mapping.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/programming/book/section-amqp0-10-mapping.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/programming/book/section-amqp0-10-mapping.html (original)
+++ qpid/site/docs/releases/qpid-0.20/programming/book/section-amqp0-10-mapping.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.16.&#160;The AMQP 0-10 mapping</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/programming/book/index.html">Programming in Apache Qpid</a></li><li>2.16.&#160;The AMQP 0-10 mapping</li></ul>
         <div class="docbook"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">2.16.&#160;The AMQP 0-10 mapping</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="ch02s15.html">Prev</a>&#160;</td><th align="center" width="60%">Chapter&#160;2.&#160;Using the Qpid Messaging API</th><td align="right" width="20%">&#160;<a accesskey="n" href="Message-Groups-Guide.html">Next</a></td></tr></table><hr /></div><div class="section"><div class="titlepage"><div><div><h2 class="title"><a id="section-amqp0-10-mapping"></a>2.16.&#160;The AMQP 0-10 mapping</h2></div></div></div><p>
 	This section describes the AMQP 0-10 mapping for the Qpid
 	Messaging API.

Modified: qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/agent.cpp.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/agent.cpp.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/agent.cpp.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/agent.cpp.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>agent.cpp</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>agent.cpp</li></ul>
         
 <h1>agent.cpp</h1>
 <div class="highlight"><pre><span class="cp">#include &lt;qpid/messaging/Connection.h&gt;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/event_driven_list_agents.cpp.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/event_driven_list_agents.cpp.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/event_driven_list_agents.cpp.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/event_driven_list_agents.cpp.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>event_driven_list_agents.cpp</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>event_driven_list_agents.cpp</li></ul>
         
 <h1>event_driven_list_agents.cpp</h1>
 <div class="highlight"><pre><span class="cp">#include &lt;sys/select.h&gt;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/index.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/index.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/index.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/index.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li>C++ QMF Examples</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li>C++ QMF Examples</li></ul>
         <h1 id="c-qmf-examples">C++ QMF Examples</h1>
 
 <h2 id="example-files">Example files</h2>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/list_agents.cpp.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/list_agents.cpp.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/list_agents.cpp.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/list_agents.cpp.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>list_agents.cpp</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>list_agents.cpp</li></ul>
         
 <h1>list_agents.cpp</h1>
 <div class="highlight"><pre><span class="cp">#include &lt;qpid/messaging/Connection.h&gt;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/print_events.cpp.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/print_events.cpp.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/print_events.cpp.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/cpp/examples/print_events.cpp.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>print_events.cpp</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/cpp/examples/index.html">C++ QMF Examples</a></li><li>print_events.cpp</li></ul>
         
 <h1>print_events.cpp</h1>
 <div class="highlight"><pre><span class="cp">#include &lt;qpid/messaging/Connection.h&gt;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/python/examples/agent.py.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/python/examples/agent.py.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/python/examples/agent.py.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/python/examples/agent.py.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/python/examples/index.html">Python QMF Examples</a></li><li>agent.py</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/python/examples/index.html">Python QMF Examples</a></li><li>agent.py</li></ul>
         
 <h1>agent.py</h1>
 <div class="highlight"><pre><span class="c">#</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/python/examples/find_agents.py.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/python/examples/find_agents.py.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/python/examples/find_agents.py.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/python/examples/find_agents.py.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/python/examples/index.html">Python QMF Examples</a></li><li>find_agents.py</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/python/examples/index.html">Python QMF Examples</a></li><li>find_agents.py</li></ul>
         
 <h1>find_agents.py</h1>
 <div class="highlight"><pre><span class="kn">import</span> <span class="nn">cqpid</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/python/examples/index.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/python/examples/index.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/python/examples/index.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/python/examples/index.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li>Python QMF Examples</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li>Python QMF Examples</li></ul>
         <h1 id="python-qmf-examples">Python QMF Examples</h1>
 
 <h2 id="example-files">Example files</h2>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_external.rb.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_external.rb.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_external.rb.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_external.rb.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/ruby/examples/index.html">Ruby QMF Examples</a></li><li>agent_external.rb</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/ruby/examples/index.html">Ruby QMF Examples</a></li><li>agent_external.rb</li></ul>
         
 <h1>agent_external.rb</h1>
 <div class="highlight"><pre><span class="nb">require</span> <span class="s1">&#39;cqpid&#39;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_internal.rb.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_internal.rb.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_internal.rb.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/agent_internal.rb.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/ruby/examples/index.html">Ruby QMF Examples</a></li><li>agent_internal.rb</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/ruby/examples/index.html">Ruby QMF Examples</a></li><li>agent_internal.rb</li></ul>
         
 <h1>agent_internal.rb</h1>
 <div class="highlight"><pre><span class="nb">require</span> <span class="s1">&#39;cqpid&#39;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/find_agents.rb.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/find_agents.rb.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/find_agents.rb.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/find_agents.rb.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qmf/ruby/examples/index.html">Ruby QMF Examples</a></li><li>find_agents.rb</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qmf/ruby/examples/index.html">Ruby QMF Examples</a></li><li>find_agents.rb</li></ul>
         
 <h1>find_agents.rb</h1>
 <div class="highlight"><pre><span class="nb">require</span> <span class="s1">&#39;cqpid&#39;</span>

Modified: qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/index.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/index.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/index.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qmf/ruby/examples/index.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li>Ruby QMF Examples</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li>Ruby QMF Examples</li></ul>
         <h1 id="ruby-qmf-examples">Ruby QMF Examples</h1>
 
 <h2 id="example-files">Example files</h2>

Modified: qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Drain.java.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Drain.java.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Drain.java.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Drain.java.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qpid-jms/examples/index.html">Qpid JMS Examples</a></li><li>Drain.java</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qpid-jms/examples/index.html">Qpid JMS Examples</a></li><li>Drain.java</li></ul>
         
 <h1>Drain.java</h1>
 <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>

Modified: qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Hello.java.html
URL: http://svn.apache.org/viewvc/qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Hello.java.html?rev=1502347&r1=1502346&r2=1502347&view=diff
==============================================================================
--- qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Hello.java.html (original)
+++ qpid/site/docs/releases/qpid-0.20/qpid-jms/examples/Hello.java.html Thu Jul 11 20:13:24 2013
@@ -46,7 +46,7 @@
         </ul>
       </div>
       <div id="middle">
-        <ul id="path-navigation"><li><a href="http://qpid.apache.org/eleases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/eleases/qpid-0.20/qpid-jms/examples/index.html">Qpid JMS Examples</a></li><li>Hello.java</li></ul>
+        <ul id="path-navigation"><li><a href="http://qpid.apache.org/releases/index.html">Releases</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/index.html">Qpid 0.20</a></li><li><a href="http://qpid.apache.org/releases/qpid-0.20/qpid-jms/examples/index.html">Qpid JMS Examples</a></li><li>Hello.java</li></ul>
         
 <h1>Hello.java</h1>
 <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>



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