Thanks Gordon. I will try it and let you know.
On Mon, May 9, 2011 at 5:38 AM, Gordon Sim [via Apache Qpid users] < [email protected]> wrote: > On 05/05/2011 10:00 PM, Nathan Sevugan wrote: > > > 1. Where do I find the binaries for the latest (0.10) qpidd cpp broker? > Is > > there one or should I build it from the source? > > 2. I tried the qpidd .8 broker installer, does not seem to work with java > > > client .10 > > > > I started the C++ broker using > > qpidd.exe --auth=no > > > > When I tried connecting through the java client with > > connectionUrl: > > amqp://guest:guest@clientid/test?brokerlist='tcp://localhost:5672' > > > > I get the following error: > > Uncategorized exception occured during JMS processing; nested exception > is > > javax.jms.JMSException: Error creating connection: The following SASL > > mechanisms [PLAIN] specified by the client are not supported by the > broker > > The 0.10 JMS client now supports ANONYMOUS[1]. Unfortunately you need to > explicitly choose the mechanism you want as otherwise PLAIN is set[2]. > You can do this by specifying the sasl_mechs broker option , e.g.: > > amqp://guest:guest@clientid/test?brokerlist='tcp://localhost:5672?sasl_mechs=\'ANONYMOUS\'' > > > Rather ugly, but should work. > > [1] This was tracked by https://issues.apache.org/jira/browse/QPID-2979. > There is a simple additional change we could make to the windows broker > that would allow PLAIN when --auth=no, for which see > https://issues.apache.org/jira/browse/QPID-1896. > > [2] I've raised https://issues.apache.org/jira/browse/QPID-3246 to track > that, as I think it is less than ideal. > > --------------------------------------------------------------------- > Apache Qpid - AMQP Messaging Implementation > Project: http://qpid.apache.org > Use/Interact: mailto:[hidden > email]<http://user/SendEmail.jtp?type=node&node=6343757&i=0&by-user=t> > > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://apache-qpid-users.2158936.n2.nabble.com/Beginner-Need-help-Basics-tp6335655p6343757.html > To unsubscribe from Beginner - Need help (Basics), click > here<http://apache-qpid-users.2158936.n2.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=6335655&code=bmF0aGFuc2V2dWdhbkBnbWFpbC5jb218NjMzNTY1NXwxMjEwOTEzNDY4>. > > -- View this message in context: http://apache-qpid-users.2158936.n2.nabble.com/Beginner-Need-help-Basics-tp6335655p6345536.html Sent from the Apache Qpid users mailing list archive at Nabble.com.
