On 01/31/2013 04:10 PM, Rakesh Kushwaha wrote:
Hi,

I have downloaded qpid-cpp-0.20.tar.gz .
I am able to do make and install then run c++ broker , now when I am
running AMQP 1.0 client java samples (qpid Demo.java sample) against this
Broker . i*t is not working* .

*I can see I am receiving AMQP 0-10 header from C++ broker* , I should
receive AMQP 1.0 header , 0.20 release suppose to be AMQP 1.0 compliant .
[...]
*Please let me know how to activate AMQP 1.0 with qpid-0.20 c++ broker* .

First you will need to have qpid proton installed as a dependency, you want the 0.3 release of that, which you can get here: http://qpid.apache.org/proton/download.html

Unfortunately the cmake build for AMQP 1.0 support in 0.20 is broken so you then need to use the autoconf build (i.e. configure --with-proton, make) or apply the patch from ().

If using the autoconf build, use the --with-proton option to force the inclusion of AMQP 1.0 support. If you install proton in a non-standard location set PKG_CONFIG_PATH so it can be found.

AMQP 1.0 support comes in the form of two loadable modules, one for the broker (amqp.so), one for the qpid::messaging client (amqpc.so). You need to use the --load-module option on the broker, or ensure the module is in the correct module directory (if configured).




---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to