Re: can not create MessageConsumer to RabbitMQ queue using qpid-client-0.30

2014-12-22 Thread Wayna Runa
()); session.close(); connection.close(); context.close(); } catch (Exception exp) { exp.printStackTrace(); } } } Special thanks to Nathan Kunkee for his support. Kind regards. - Wayna Runa

Re: can not create MessageConsumer to RabbitMQ queue using qpid-client-0.30

2014-12-19 Thread Wayna Runa
Great Nathan ! This is the best gift for me in x-mas ! Regards. On 18 December 2014 at 17:52, Nathan Kunkee nkun...@genome.wustl.edu wrote: On 12/18/2014 10:07 AM, Wayna Runa wrote: Hi everybody ! I am using Hello.java sample of qpid-client-0.30 to publish and consume messages from

can not create MessageConsumer to RabbitMQ queue using qpid-client-0.30

2014-12-18 Thread Wayna Runa
Hi everybody ! I am using Hello.java sample of qpid-client-0.30 to publish and consume messages from a RabbitMQ queue, but i get this error: --.--.--.--.--.--.--.--.--.--.--.--.--.--.--.-- SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder. SLF4J: Defaulting to no-operation (NOP)

Re: Cannot connect to RabbitMQ 3.3.5 using qpid-client-0.30

2014-12-17 Thread Wayna Runa
Hi Nathan, This works! In RabbitMQ was necessary: - to create virtual host with /, for example: /MY_VIRTUAL_HOST. - to create a queue in above virtual host - to bind using a routing key with the same name of above queue ... and run Hello.java ! Regards. - wr

How to create a Destination to RabbitMQ custom exchange using qpid-client-0.30

2014-12-17 Thread Wayna Runa
Hi there again! I am trying to connect to RabbitMQ queue (AMQP 0-9-1) via custom exchange using Destination (Binding URL) without success. I have tried several definitions of destination, here my JNDI config: --.-- connectionfactory.myRabbitMQConnectionFactory1 =

Re: How to create a Destination to RabbitMQ custom exchange using qpid-client-0.30

2014-12-17 Thread Wayna Runa
Thanks Nathan for your information. I tried with: destination.myDest1 = BURL:direct://ex_test1/rk_test1/ .. but I have not get to publish message in RabbitMQ queue. When I use the below destinations, using *amq.direct* exchange (internal and default exchanges in rabbitmq), I can publish