diff options
author | Gordon Sim <gsim@apache.org> | 2008-01-23 15:45:33 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-01-23 15:45:33 +0000 |
commit | b6673e1e11f07fbb22a6a78925bcb3ffca733fc5 (patch) | |
tree | aace92f5b90b8513d7dfee6f3a8b5bcc4b4397bb | |
parent | 5aa291a5d56d526ec02fb76988770a438d08cd0f (diff) | |
download | qpid-python-b6673e1e11f07fbb22a6a78925bcb3ffca733fc5.tar.gz |
Take space out the queue name as it currently upsets the java client when used in the reply-to field.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@614569 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/examples/examples/request-response/client.cpp | 2 | ||||
-rw-r--r-- | cpp/examples/examples/request-response/verify.in | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/cpp/examples/examples/request-response/client.cpp b/cpp/examples/examples/request-response/client.cpp index 717df64be0..b282e133e7 100644 --- a/cpp/examples/examples/request-response/client.cpp +++ b/cpp/examples/examples/request-response/client.cpp @@ -123,7 +123,7 @@ int main(int argc, char** argv) { // of the response queue. stringstream response_queue; - response_queue << "client " << session.getId(); + response_queue << "client" << session.getId(); // Use the name of the response queue as the routing key diff --git a/cpp/examples/examples/request-response/verify.in b/cpp/examples/examples/request-response/verify.in index 18d61b5f75..fb12502a48 100644 --- a/cpp/examples/examples/request-response/verify.in +++ b/cpp/examples/examples/request-response/verify.in @@ -1,5 +1,5 @@ ==== ./client -Activating response queue listener for: client +Activating response queue listener for: client Request: Twas brillig, and the slithy toves Request: Did gire and gymble in the wabe. Request: All mimsy were the borogroves, @@ -9,14 +9,14 @@ Response: TWAS BRILLIG, AND THE SLITHY TOVES Response: DID GIRE AND GYMBLE IN THE WABE. Response: ALL MIMSY WERE THE BOROGROVES, Response: AND THE MOME RATHS OUTGRABE. -Shutting down listener for client +Shutting down listener for client ==== ==== remove_uuid server.out ==== ./server Activating request queue listener for: request Waiting for requests -Request: Twas brillig, and the slithy toves (client ) -Request: Did gire and gymble in the wabe. (client ) -Request: All mimsy were the borogroves, (client ) -Request: And the mome raths outgrabe. (client ) +Request: Twas brillig, and the slithy toves (client) +Request: Did gire and gymble in the wabe. (client) +Request: All mimsy were the borogroves, (client) +Request: And the mome raths outgrabe. (client) ==== |