Examples don't allow use of SSL
-------------------------------
Key: QPID-2049
URL: https://issues.apache.org/jira/browse/QPID-2049
Project: Qpid
Issue Type: Bug
Components: C++ Client
Affects Versions: 0.5
Reporter: Gordon Sim
Priority: Minor
Fix For: 0.6
Need to apply change similar to following patch to all examples:
Index: examples/direct/declare_queues.cpp
===================================================================
--- examples/direct/declare_queues.cpp (revision 797423)
+++ examples/direct/declare_queues.cpp (working copy)
@@ -53,12 +53,14 @@
int main(int argc, char** argv) {
- const char* host = argc>1 ? argv[1] : "127.0.0.1";
- int port = argc>2 ? atoi(argv[2]) : 5672;
+ ConnectionSettings settings;
+ if (argc>1) settings.host = argv[1];
+ if (argc>2) settings.port = atoi(argv[2]);
+ if (argc>3) settings.protocol = argv[3];
Connection connection;
try {
- connection.open(host, port);
+ connection.open(settings);
Session session = connection.newSession();
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]