Author: aconway
Date: Wed Mar 14 12:40:45 2007
New Revision: 518293
URL: http://svn.apache.org/viewvc?view=rev&rev=518293
Log:
Merged revisions 513371 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid
........
r513371 | rgreig | 2007-03-01 10:09:17 -0500 (Thu, 01 Mar 2007) | 1 line
(Patch submitted by Rupert Smith) Small changes to use virtual hosts, merged
back in from perftesting_persistent branch.
........
Modified:
incubator/qpid/branches/qpid.0-9/ (props changed)
incubator/qpid/branches/qpid.0-9/cpp/tests/client_test.cpp
incubator/qpid/branches/qpid.0-9/cpp/tests/topic_listener.cpp
incubator/qpid/branches/qpid.0-9/cpp/tests/topic_publisher.cpp
Propchange: incubator/qpid/branches/qpid.0-9/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified: incubator/qpid/branches/qpid.0-9/cpp/tests/client_test.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/tests/client_test.cpp?view=diff&rev=518293&r1=518292&r2=518293
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/tests/client_test.cpp (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/tests/client_test.cpp Wed Mar 14
12:40:45 2007
@@ -72,8 +72,9 @@
Connection con(verbose);
string host("localhost");
- con.open(host);
- if (verbose) std::cout << "Opened connection." << std::endl;
+ con.open(host, 5672, "guest", "guest", "/test");
+ if (verbose)
+ std::cout << "Opened connection." << std::endl;
//Create and open a channel on the connection through which
//most functionality is exposed
Modified: incubator/qpid/branches/qpid.0-9/cpp/tests/topic_listener.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/tests/topic_listener.cpp?view=diff&rev=518293&r1=518292&r2=518293
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/tests/topic_listener.cpp (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/tests/topic_listener.cpp Wed Mar 14
12:40:45 2007
@@ -104,7 +104,7 @@
try{
cout << "topic_listener: Started." << endl;
Connection connection(args.getTrace());
- connection.open(args.getHost(), args.getPort());
+ connection.open(args.getHost(), args.getPort(), "guest", "guest",
"/test");
Channel channel(args.getTransactional(), args.getPrefetch());
connection.openChannel(channel);
Modified: incubator/qpid/branches/qpid.0-9/cpp/tests/topic_publisher.cpp
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/tests/topic_publisher.cpp?view=diff&rev=518293&r1=518292&r2=518293
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/tests/topic_publisher.cpp (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/tests/topic_publisher.cpp Wed Mar 14
12:40:45 2007
@@ -118,7 +118,7 @@
} else {
try{
Connection connection(args.getTrace());
- connection.open(args.getHost(), args.getPort());
+ connection.open(args.getHost(), args.getPort(), "guest", "guest",
"/test");
Channel channel(args.getTransactional(), args.getPrefetch());
connection.openChannel(channel);