qpid

RabbitMQ Messaging with QPID 0.32 client

无人久伴 提交于 2019-12-13 02:33:06
问题 Using QPID Java Client i can only get messages delivered through the exchange to the bound queue using the following expanded syntax of AMQAnyDestination Destination queue = new AMQAnyDestination( new AMQShortString("onms2"), new AMQShortString("direct"), new AMQShortString("Simon"), true, true, new AMQShortString(""), false, bindvars); If i attempt to use the different form which just specifies the address as follows it doesnt work:- Destination queue = new AMQAnyDestination("onms2/Simon");

Apache Camel AMQP - ActiveMQ AMQP header mismatch value 1, expecting 0

核能气质少年 提交于 2019-12-13 02:24:05
问题 I am attempting to make an Apache Camel application that integrates with ActiveMQ over AMQP. I have been working from the provided ' camel-example-spring-jms ' project, which is over the standard TCP connection, but I have modified to use my standalone ActiveMQ 5.8 installation (rather than embedded), which I have working fine using TCP. Active MQ Configuration ( amqp on 5672 ) <transportConnectors> <transportConnector name="openwire" uri="tcp://0.0.0.0:61610?maximumConnections=1000

python-qpid-proton examples, send message to azure not working

瘦欲@ 提交于 2019-12-13 01:23:35
问题 I'm trying to use python-qpid-proton version 0.9.1 to send a message to a Azure Service Bus queue. The examples in examples/python/messenger/ accept addresses of the form amqps://<user>:<password>@<server>/<queue name> , and I can successfully send messages to the queue I have on Azure with it. The problem with this is that I can't control much of what's going on, namely I can't really see if the sending failed. Eventually I want to persist the messages in case the internet connection goes

Message without handler issue for Apache Qpid in Spring Boot

落爺英雄遲暮 提交于 2019-12-12 02:59:16
问题 I am trying to use Apache Qpid through Spring Boot application using Jms Qpid client. I am able to configure it but when I am trying to receive message from the queue, the logger is printing: Dispatcher(918480905)Received a message(878303980)[1] from queue 1 )without a handler - rejecting(requeue)... Here is my code: JmsConfiguration.java @Configuration public class JmsConfiguration { @Primary @Bean public Context createContext() { Properties properties=new Properties(); System.setProperty(

Create Exchange and queues in Qpid broker

会有一股神秘感。 提交于 2019-12-11 16:13:36
问题 Hi I am testing spring integration project using an embedded broker Qpid. But the problem is that HOW CAN i make queues and exchanges in qpid. I thought that rabbit-config.xml would make the queues and exchanges in qpid broker but to no avail. My flow is create queues and exchanges in qpid broker pass messages to them and inbound amqp adapters bounded to these queues would get messages and i can proceed with the test Error : Queue: 'push.customer.arkona.controller.search' not found on

python script which subscribes/listens to Azure Event Hub?

℡╲_俬逩灬. 提交于 2019-12-11 12:13:39
问题 I am interested in listening to an Event Hub from a Python script and executing some code when an inbound message is detected. On Ubuntu, using Python 2.7 with https://pypi.python.org/pypi/python-qpid-proton/0.10 and the example "receiver" script, I attempt to subscribe to a URI that looks like: amqps://<key name>:<key>@<namespace>.servicebus.windows.net/<event hub name>/ConsumerGroups/$Default/Partitions/0 The following error is returned: proton.MessengerException: Cannot subscribe to <...>

Integration tests with RabbitMQ

倖福魔咒の 提交于 2019-12-11 08:07:27
问题 Currently i'm working on some Spring Boot 2.x application interacting w/ RabbitMQ. I'd like to create an integration test to test the whole app. logic, including interaction w/ Rabbit. So far i need a light-weight stand-alone implementation of AMQP standart to make Spring Boot work w/ it, including sending & receiving messages. I had a look at Qpid sample here but it needs RabbitMQ running somewhere what is not very good for my IT. Are there some another mature light-weight stand-alone AMQP

Communicating with AMQP 1.0 broker over SSL using Qpid

做~自己de王妃 提交于 2019-12-11 02:28:39
问题 I am using ActiveMQ 5.8.0, which supports AMQP 1.0 as a queue broker. I am trying to communicate with this from a Java client using the Qpid AMQP1.0 client jms library but do not see a method of specifying keystore and truststore information. I have successfully configured a client by passing in the SSL credentials via the Java VM options (e.g. -Djavax.net.ssl.keyStore), however this is not an acceptable method for my final solution... I need to be able to specify this information from within

AMQP V1.0 Client for .NET

▼魔方 西西 提交于 2019-12-10 16:33:33
问题 I am looking into using a product such as RabbitMQ or ActiveMQ. I see that there is, to a certain extent, a level of support in these products for AMQP v1.0. However, I am struggling to find a client for using AMQP 1.0 with .NET. So far the only one I have come across is Apache Qpid. However, having to install all its dependencies along with building it all rather than just using something like NuGet to obtain the client library all seems a bit cumbersome and doesn't give me confidence in

Jms message acknowledge only till the message acknowledged on

假装没事ソ 提交于 2019-12-10 15:55:37
问题 How to ensure message acknowledge deletes only messages upto the message on which acknowledge is called in a jms broker. Currently I have a system which consumes from a jms queue and partially processes it.Sometime later a batch of these messages gets persisted by a different thread. I need to acknowledge on messages now. But the problem is I have to stop consuming the messages, otherwise acknowledging a previously received message will also acknowledge all other subsequent messages received.