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

Create Exchange and queues in Qpid broker

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…
vipulk10
  • 117
  • 3
  • 15
0
votes
0 answers

Spring integration jms:message-driven-channel-adapter message is not deleted from Qpid queue

I have a spring integration project. Which reads message from the qpid queue and starts some processing. To mu understanding once message is read it should be cleared from the queue. But Even after the processing is complete. The message stays in…
0
votes
1 answer

AMQP 1.0 Qpid BytesMessage large payload

I am using the qpid client Java library (version 0.32) to integrate AMQP 1.0. I have to transfer a byte array (less than 5mb), but this message is never delivered to the subscribers. I recorded the frames via wireshark and the transfer frames are…
Stefan
  • 35
  • 8
0
votes
1 answer

Apache qpid setDelay

Does Apache qpid-cpp messaging api support delayed delivery of message as in ActiveMQ? TextMessage message = session.createTextMessage("test msg"); long time = 60 * 1000; message.setLongProperty(ScheduledMessage.AMQ_SCHEDULED_DELAY,…
yodhevauhe
  • 765
  • 3
  • 11
  • 33
0
votes
0 answers

How to connect Azure Service Bus with Qpid Proton Java?

I need to connect Azure service Bus for sending messages. I followed given example and changed only host name to amqps://XXX:XXX@abcd.servicebus.windows.net/queueName While running the Send class, i am getting below error. I tried a lot but could…
Abhishek Kumar
  • 435
  • 1
  • 6
  • 16
0
votes
1 answer

unauthorized error when creating queue in event hubs

need to create queue in eventhub for receive messages sent to it using python, but got this error when using the code below. note : policy is set to send, listen. thanks from azure.servicebus import ServiceBusService sbs =…
dson9966
  • 1
  • 4
0
votes
2 answers

Qpid Proton: idle_timeout configuration

I am using Qpid Proron 0.18.1 version. The idle_timeout is printing out to be, connection.idle_timeout() : 15000. I am not able to trace back to the code where the default value 15000 is set. Also, when I am changing it in container as…
Mooni
  • 121
  • 12
0
votes
1 answer

Qpid Proton: sending messages to two destinations

Currently, I am able to send messages to a single queue "devQueue". When the message arrives to a "devQueue", it needs to be sent to the "localQueue" as well. I am finding this implementation challenging. I tried to call a different class…
Mooni
  • 121
  • 12
0
votes
1 answer

How to receive many messages in a batch in the Azure Event Hub via AMQP 1.0

I set up an AMQP 1.0 link with just the path and a filter using the Apache Qpid Electron Go wrapper for Qpid Proton like this: amqpConnection.Receiver( // the path containing the consumer group // and the partition Id …
TPPZ
  • 4,447
  • 10
  • 61
  • 106
0
votes
2 answers

Apache QPID JMS Client - setting prefetch doesn't work

I have a JmsConnectionFactory configured with a URI such as this: failover:(amqps://11.22.33.44?amqp.idleTimeout=120000&transport.tcpKeepAlive=true&jms.prefetchPolicy.all=10)?failover.maxReconnectAttempts=20 Note the jms.prefetchPolicy.all=10…
Malt
  • 28,965
  • 9
  • 65
  • 105
0
votes
0 answers

bandwidth difference beetween apache qpid and rabbitmq when reconnect

I developed program to publish messages and then consume it at 10 ms interval for 30 s duration. When it runs for 5 s, it will disconnect and reconnect after 5 s but still produce messages. Apache Qpid need at least 4 s to consume all the messages…
0
votes
1 answer

JMS CachingConnectionFactory onException method is never called on JMSException

I am using Apache Camel with Spring to send messages from my Java service. I need to reset JMS connection in case of any error occurred at exchange. I am using below code to achieve my objective. try { producerTemplate.sendBody(endPoint,…
0
votes
3 answers

Connecting to the AMQP 1.0 Azure EventHub with QPid and the golang wrapper Electron

I would like to use the Electron golang wrapper for the Qpid proton-c library to connect to the Azure EventHub. I am setting the following SASL details combined to the host/port/namespace/path required to build the connection string but for some…
TPPZ
  • 4,447
  • 10
  • 61
  • 106
0
votes
1 answer

JMS QPID Queue vs Topic

I'm confused when it comes to JMS Queue/Topic. What I want is messages should go to every subscriber and I want subscribers to receive messages from inactive time when they become active. However, I don't have control over whether or not…
Springgrass
  • 41
  • 1
  • 5
0
votes
1 answer

log4j not writing logs

Below is my log4j configuration #log4j.additivity.org.apache.qpid=false log4j.rootLogger=DEBUG,…
harishr
  • 17,807
  • 9
  • 78
  • 125