Author: gsim
Date: Wed Jan 23 07:45:33 2008
New Revision: 614569

URL: http://svn.apache.org/viewvc?rev=614569&view=rev
Log:
Take space out the queue name as it currently upsets the java client when used 
in the reply-to field.


Modified:
    incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/client.cpp
    incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/verify.in

Modified: 
incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/client.cpp
URL: 
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/client.cpp?rev=614569&r1=614568&r2=614569&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/client.cpp 
(original)
+++ incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/client.cpp 
Wed Jan 23 07:45:33 2008
@@ -123,7 +123,7 @@
        // 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
 

Modified: 
incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/verify.in
URL: 
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/verify.in?rev=614569&r1=614568&r2=614569&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/verify.in 
(original)
+++ incubator/qpid/trunk/qpid/cpp/examples/examples/request-response/verify.in 
Wed Jan 23 07:45:33 2008
@@ -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: 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)
 ====


Reply via email to