You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Gordon Sim (JIRA)" <ji...@apache.org> on 2010/11/01 12:01:31 UTC

[jira] Updated: (QPID-2049) Examples don't allow use of SSL

     [ https://issues.apache.org/jira/browse/QPID-2049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gordon Sim updated QPID-2049:
-----------------------------

    Fix Version/s:     (was: 0.7)

This really only applies to examples for the old API; the messaging API examples allow setting of connection options which allows setting the protocol to ssl.

> 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
>
> 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:dev-subscribe@qpid.apache.org