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

Setting connection's `max_frame_size` in Qpid Proton AMQP 1.0 client library

I would like to simply open an AMQP 1.0 connection with a specific max_frame_size using the Apache Qpid Proton client library. This is inside a testsuite, not a real world application. The Java library seems more advanced than the C library and its…
0
votes
0 answers

Slow consumer detection in Apache Qpid, but why?

I found that Apache Qpid has a function that detects slow consumers and disconnect them. It means that if I have slow connectivity to queue or long think-time, I would never get service because I can burden the servers. Has anyone perform…
syko
  • 3,477
  • 5
  • 28
  • 51
0
votes
0 answers

Issue when using CMake to install Qpid broker

I'm currently going through the process of installing the Qpid broker on Windows. I've already installed CMake, boost, and python and I've added the environment variable for the root of the Boost directory. I'm now at the step where Qpid client is…
loremIpsum1771
  • 2,497
  • 5
  • 40
  • 87
0
votes
1 answer

embedded QPid broker - Web Management Console not loading

The management console is not able to run when the broker is started with the below artifact for QPid. Am I missing a dependency or configuration in the below setup? pom.xml org.apache.qpid
nmadzharov
  • 482
  • 2
  • 6
  • 12
0
votes
1 answer

How to check if Qpid is installed?

Trying to check if qpid is installed on RHEL6 I've done the following and nothing comes up, but it supposed to be installed rpm -qa qpid
Sam Gomari
  • 733
  • 4
  • 13
  • 37
0
votes
1 answer

Timeout with apache QPID

I have a problem with an application in Java. This application uses Apache QPid broker (6.0.1) to send messages. I run it on 2 computers : the computer I use to work, and the 1 we use to test application before we give it to the client. On my…
oliver39
  • 1
  • 1
  • 5
0
votes
1 answer

AMQP Qpid: thread safety

I am looking through docs and somehow I am blind or missing important information, whether C++ classes are thread safe or not. the Session class specifically? Any experiences or anybody who found the info actually? Because it seems to me, that I…
ipavlu
  • 1,617
  • 14
  • 24
0
votes
1 answer

Receiving from Azure Event Hub using QPID and Python

Im trying to use qpid-proton to receive events from an Azure event hub. I am working on an x64 Windows 8.1 machine. At first I tried to install qpid-proton-0.12 but the install failed in testing in Visual Studio. I then downloaded qpid-python-0.32,…
MadProgrammer
  • 423
  • 1
  • 5
  • 17
0
votes
1 answer

Message without handler issue for Apache Qpid in Spring Boot

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]…
Rohan Singh Dhaka
  • 173
  • 2
  • 8
  • 33
0
votes
0 answers

Qpid connection refused

I am using 0.32 Qpid JMS client in my spring boot application. Following are the config and properties files: JmsConfiguration.java @Configuration public class JmsConfiguration { @Primary @Bean public Context createContext() { …
Rohan Singh Dhaka
  • 173
  • 2
  • 8
  • 33
0
votes
1 answer

integration of apache qpid with spring boot

I am trying to integrate Apache Qpid in my Spring application. As i am new in both i thought of trying out few examples before starting implementation of my project. Here are the file- Config.java import java.util.Properties; import…
Rohan Singh Dhaka
  • 173
  • 2
  • 8
  • 33
0
votes
2 answers

rabbitmq amqp version negotiation failing with Qpid 6.0.0

I am running rabbitmq server 3.1.5 and trying to connect to this broker from a Qpid 6.0.0 client (both running on Linux). The rabbitmq broker is using amqp 0-9-1. When I try to connect from the Qpid client, it fails with "connection reset". From…
Frank V.
  • 1
  • 2
0
votes
1 answer

Proton QPID with standard input

I'm just about to dig into AMQP protocol and things. I'm using proton with C++ bindings. I've stuck with a little problem here. Say, I have an asynchrnous receiver like in it's example, which one may find in simple_recv.cpp. So, the problem I see…
Sergey Kanaev
  • 570
  • 5
  • 18
0
votes
1 answer

Send to Event Hub to a publisher using Qpid-Proton

From the following link, I found out that we can send data to publisher over AMQP protocol, https://github.com/ppatierno/azuresblite-examples. So, how to implement the same, i.e) Send to publisher(with & without token), using Qpid-proton python?
Ram Prasad
  • 129
  • 1
  • 1
  • 8
0
votes
1 answer

Apache Camel + QPid set messageid to UUID not working

We have an application using Apache Camel 2.15.2 and Apache Qpid 0.4.0 that sends and receives messages over Amqp to a Microsoft Service Bus 1.1. We upgraded Qpid recently from the older Qpid 0.32 and now we have a problem that we cannot set the…
P3anuts
  • 461
  • 1
  • 9
  • 24