Questions tagged [qpid]

Apache Qpid™ is a cross-platform enterprise messaging system which implements the Advanced Message Queuing Protocol (AMQP), providing message brokers written in C++ and Java, along with clients for C++, Java JMS, .NET, Python, and Ruby.

From the Apache Qpid Project Homepage:

Apache Qpid™ is a cross-platform Enterprise Messaging system which implements the Advanced Message Queuing Protocol (AMQP), providing message brokers written in C++ and Java, along with clients for C++, Java JMS, .Net, Python, and Ruby.

Enterprise Messaging systems let programs communicate by exchanging messages, much as people communicate by exchanging email. Unlike email, enterprise messaging systems provide guaranteed delivery, speed, security, and freedom from spam. Until recently, there was no open standard for Enterprise Messaging systems, so programmers either wrote their own, or used expensive proprietary systems.

AMQP is the first open standard for Enterprise Messaging. It is designed to support messaging for just about any distributed or business application. Routing can be configured flexibly, easily supporting common messaging paradigms like point-to-point, fanout, publish-subscribe, and request-response.

Apache Qpid implements the latest AMQP specification, providing transaction management, queuing, distribution, security, management, clustering, federation and heterogeneous multi-platform support and a lot more. And Apache Qpid is extremely fast. Apache Qpid aims to be 100% AMQP Compliant.

343 questions
0
votes
1 answer

Camel Spring remoting with Artemis Proton/Qpid client - hangs sending message

When i use the Camel spring remoting configuration to send some message, both the producer and consumer are running in different JVM. using Apache artemis 2.14.0 version version of camel (2.20.0), qpid (0.54.0), pooled-jms (1.1.1) i was using…
Tim
  • 1,321
  • 1
  • 22
  • 47
0
votes
1 answer

How to install Qpid Proton on Raspberry pi

I want to use Qpid Proton on the raspberry pi 4 but I have trouble installing it. Well, it seems I could install it and I can use the examples from the Apache…
0
votes
1 answer

How to set ContentType in qpid JMS

Hello this question is related to this and I'd like to know if there is any way to set ContentType header in qpid in JMS context. We are using JmsConnectionFactory and spring's JMS library. I was trying to find some way using extension but can't…
bilak
  • 4,526
  • 3
  • 35
  • 75
0
votes
1 answer

Qpid-CPP "No Protocol Received after 10s, closing" when using SSL/TLS

I am currently working on upgrading a legacy application's QPID communication to support SSL/TLS encryption via x.509 certificates. I was provided a virtual machine to test against and I think I've got most of it ironed out. However, maybe 1 out of…
joshru
  • 1
  • 1
0
votes
1 answer

How can we close and clean properly JMS Connection, Session, Consumer and Producer from system after Exception?

We are using Apache Qpid JMS Client(0.45) to consume messages from ServiceBus. We are getting Suspected deadlocked threads while restarting of connection. After log investigation, we realized that JmsSession was not closed properly. While closing…
Abhishek Kumar
  • 435
  • 1
  • 6
  • 16
0
votes
1 answer

JMS message listener invoker cannot be cast to org.apache.qpid.client.AMQDestination

I am having one config file as below, @Slf4j @Configuration @EnableJms public class MyQpidConfig { @Bean("myQpidConn") public AMQConnectionFactory amqConnectionFactory() throws URLSyntaxException { AMQConnectionFactory…
Zia
  • 1,001
  • 1
  • 13
  • 25
0
votes
2 answers

Artemis qpid consumer Not able to make connection with the broker

Below is the configuration of Qpid client, using Camel context to connect Artemis broker. The context files are getting started as expected, but the qpid client in this case not able to connect to the Apache Artemis 2.14.0 broker. The qpid client is…
Tim
  • 1,321
  • 1
  • 22
  • 47
0
votes
1 answer

how to create amqp connection using apache qpid library and dynamic certificate string (instead of path to certificate) in java

Currently creating amqp connection by overriding setRemoteURI("") of JmsConnectionFactory(qpid apache) application-context.xml
Myra
  • 25
  • 1
  • 1
  • 6
0
votes
1 answer

Qpid client Apache Artemis 2.14.0 High availability not working

Connecting Apache Artemis broker using Qpid client for High Availablity. The broker instance runs in two nodes and configuration listed with replication in broker.xml Brokers instance started on node1 (master) and node2 (slave), and it was running…
Tim
  • 1,321
  • 1
  • 22
  • 47
0
votes
0 answers

Apache QPID JMS: Use certificate CN as connection username

Currently, I am setting up CA authentication for a java application using qpid jms. I am happy to say I have gotten everything to work with the connection itself, and the passing of authorized messages between two applications. Because of future…
BMH
  • 3
  • 3
0
votes
1 answer

EventHubConsumerClient Apache Qpid memory leak?

I am reading events from an Azure EventHub cluster synchronously via the receiveFromPartition method on the EventHubConsumerClient class. I create the client once like so: EventHubConsumerClient eventHubConsumerClient = new EventHubClientBuilder() …
steve
  • 537
  • 1
  • 7
  • 17
0
votes
1 answer

How to add alternate exchange while defining binding url?

I need to create queue on application start and should delete when application stop. Also messages need to reroute to alternate exchange on application shutdown. How can we add alternate exchange option in the Binding URL? I am using Java Qpid…
Nitin
  • 1
  • 1
0
votes
1 answer

Configuring amq.topic binding with x-filter-jms-selector argument

Any idea how to configure amq.topic binding with x-filter-jms-selector argument? I know how to do that in web admin UI. If we are amending config file of qpid, then how to add this filter in that?
0
votes
0 answers

Configure Apache Qpid dispatch router to send undelivered action - redirect

How i can configure Apache Qpid to send AMQP 1.0 connection-level redirect and link-level redirect to a client that are connected or trying to connect to the dispatcher.
Bordeaux
  • 13
  • 3
0
votes
2 answers

TypeError: argument of type 'Object' is not iterable

I've written what I thought was a simple python script to search through several lines of output and match (i.e. "grep") on a specific string. Listing all queues without the pattern match is simple enough: from qmf.console import Session sess =…
PAUL MENA
  • 107
  • 1
  • 14