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
1
vote
0 answers

Occasional high latency in qpid application

I'm hoping someone can help me with an issue I'm seeing with a Qpid C++ application I'm using. Essentially, we have one application publishing a status to a last_value_queue at about a 10Hz rate and a couple other applications continuously…
Kevin
  • 510
  • 4
  • 16
1
vote
1 answer

Does WSO2 ESB support AMQP 1.0?

The latest WSO2 ESB (4.8.1) has documentation for configuring AMQP with RabbitMQ, which does not support AMQP 1.0. Does this mean WSO2 can not use AMQP 1.0 over QPid for example ? I'm very confused on this, since QPid seems to be referenced often in…
Brad
  • 823
  • 1
  • 9
  • 17
1
vote
0 answers

Can I use the Qpid C++ API to view the properties of an existing queue?

Essentially, I have a few C++ applications communicating over Qpid queues, one of which happens to be a last-value queue. I decided to throw an extra check into the applications using this last-value queue to ensure that the queue options line up…
Kevin
  • 510
  • 4
  • 16
1
vote
1 answer

How do I get my AMQP 1.0 consumer to keep track of messages already consumed using ActiveMQ

I am using a ActiveMQ AMQP broker, every time I run my consumer I get all the message in the queue. This is good, however I need a way to limit the messages I read based on what I have not already read the prior time I ran my consumer. What I mean…
user3357415
  • 94
  • 1
  • 10
1
vote
1 answer

Need qpid-proton publish/subscribe amqp sample program for python to access Azure topic

I am using Azure cloud service bus to send and receive messages using AMQP protocol. I have installed proton-c libraries in my debian-linux. I tried the below program to send and receive message from the queue. My requirement is instead of queue I…
Raj
  • 77
  • 1
  • 11
1
vote
1 answer

apache qpid Request-Response

I have not found any document or samples around implementing request-response using Apache qpid or even AMQP in general, is this supported and efficient solution? Any relevant info would be greatly appreciated. Since i am using spring and…
Mark1234
  • 589
  • 2
  • 8
  • 24
1
vote
2 answers

Python27 qpid: ImportError: No module named _cproton

I try to execute the below code but unfortunately I am getting the following error. Any suggestions are really appreciated. I have the following files in c:\Python27\Lib\site-packages 1) cproton.py 2) proton.py 3) _cproton.so import sys from…
Raj
  • 77
  • 1
  • 11
1
vote
1 answer

Qpid Proton Messenger API error handling

I'm getting desperate trying to handle errors when sending messages using Qpid Proton AMQP Messenger API for Python. This is an example message sending session from the interactive Python interpreter when sending to a nonexistent queue myqueue on a…
Beli
  • 594
  • 5
  • 16
1
vote
2 answers

Qpid Erlang Module

I am newbie to erlang but managed to get the ActiveMQ talking to my erlang shell using qpid pronton c library as, which is working well and i am getting messages from queue itself on my erlang shell and vice…
StackUser
  • 141
  • 1
  • 1
  • 8
1
vote
1 answer

AMQP Connection string to Active MQ using Elixir

i am using ActiveMQ as message broker and used Qpid proton c library to connect to Erlang for messaging service and seems working well with below commands with ActiveMQ…
Jos
  • 33
  • 2
1
vote
3 answers

AMQP - Apache Qpid client for Node.js

I've been trying to find an Apache Qpid client for Node.js. There is this node-qpid package I found but it's too old and doesn't install even with qpid-proton-C 0.3 as mentioned in the README. I just basically want an AMQP client for Node.js that…
Abdud Dayan Adeeb
  • 579
  • 1
  • 4
  • 13
1
vote
0 answers

Error creating multiple durable queue's in qpid

When creating multiple durable queues i get the following error message: Failed: SessionException: (None, 'Queue stage-cart: create() failed: jexception 0x0400 fcntl::clean_file() threw JERR_FCNTL_OPENWR: Unable to open file for write. (open()…
kendotwill
  • 1,892
  • 18
  • 17
1
vote
1 answer

Qpid asynchronous messaging with Java

I am new to Qpid and JMS and I'm trying to make a very simple Java application using Qpid Java broker. I am implementing this example that simply sends and receives a predefined…
SirAnderson
  • 101
  • 2
  • 14
1
vote
1 answer

ServiceBus over AMQP closes consumer

We have on-premise installation of ServiceBus and Java JMS QPID client 0.26. It seems that there is bug in SB - it sends END command to consumer when producer closes connection. Both producer and consumer must run on the same machine. First start…
jan_bar
  • 71
  • 8
1
vote
1 answer

AMQP Qpid Proton - Unable to send messages to more than 256 queues

I am using AMQP 1.0 with Qpid Proton 0.6 and ActiveMQ 5.9.0 as a broker. When sending messages to less than 256 queues everything is ok. When sending messages to more than 256 Proton blocks after 256 queue. Messenger mng = new…
salata.mar
  • 11
  • 2