diff options
| -rw-r--r-- | doc/book/src/Programming-In-Apache-Qpid.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/book/src/Programming-In-Apache-Qpid.xml b/doc/book/src/Programming-In-Apache-Qpid.xml index e5ddca1d7a..a5a846152c 100644 --- a/doc/book/src/Programming-In-Apache-Qpid.xml +++ b/doc/book/src/Programming-In-Apache-Qpid.xml @@ -2075,6 +2075,14 @@ std::cout << request.getContent() << " -> " << response.getContent() << std::end sender may block waiting for the broker to confirm receipt of messages, before it can free up more capacity.</para> </listitem> + <listitem> + <para>If you are setting a reply-to address on messages + being sent by the c++ client, make sure the address type is + set to either queue or topic as appropriate. This avoids the + client having to determine which type of node is being + refered to, which is required when hanling reply-to in AMQP + 0-10. </para> + </listitem> </itemizedlist> </section> |
