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 | f7ab279c57c873bc4be110f3494fbbf3082ee152 (patch) | |
| tree | a71407ef48d15a30c26737628e80eebe03b1d135 /qpid | |
| parent | 58f0fa617e24195e054c11065157d83eaf439d16 (diff) | |
| download | qpid-python-f7ab279c57c873bc4be110f3494fbbf3082ee152.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@614569 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
| -rw-r--r-- | qpid/cpp/examples/examples/request-response/client.cpp | 2 | ||||
| -rw-r--r-- | qpid/cpp/examples/examples/request-response/verify.in | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/qpid/cpp/examples/examples/request-response/client.cpp b/qpid/cpp/examples/examples/request-response/client.cpp index 717df64be0..b282e133e7 100644 --- a/qpid/cpp/examples/examples/request-response/client.cpp +++ b/qpid/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/qpid/cpp/examples/examples/request-response/verify.in b/qpid/cpp/examples/examples/request-response/verify.in index 18d61b5f75..fb12502a48 100644 --- a/qpid/cpp/examples/examples/request-response/verify.in +++ b/qpid/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) ==== |
