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

use qpid-proton to send persistent messages to Azure service bus - url parsing error

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://:@/, and I can successfully send messages to the queue I have on Azure…
Mika
  • 51
  • 6
0
votes
0 answers

QPid with JMS. Unable to create/bind queue with jndi

Using: qpid-broker 0.32, qpid-jms-client-0.3.0 Hello. New user of the AMQP protocol. I'm attempting to create and bind a queue to an already existing fanout exchange through JNDI, then connect through a JMS client. If I create the exchange, the…
DQMan
  • 115
  • 6
0
votes
0 answers

Qpid Benchmark: Have questions related to quid benchmark

I am trying to benchmark Qpid with the following use case: Default Qpid configs are used(ex: 2GB is the max memory set), broker and client are on the same machine I have 1 connection and 256 sessions per connection, each sessions has a…
0
votes
1 answer

Connect to JMX via SSL on Spring

In my messagedriven project I have one point that needs JMX, the deletion of message queues. Currently, I create my MBean of the qpid broker like the following:
Smoothi
  • 283
  • 1
  • 3
  • 15
0
votes
1 answer

Durable subscription with Qpid JMS client and RabbitMQ

I have problems creating a durable subscription to a topic in RabbitMQ using the Qpid JMS client. I tried the following: session.createDurableSubscriber( topic, "name" ); but I get a JMSAMQException with the message "Queue bound query failed: Woken…
sun
  • 97
  • 8
0
votes
1 answer

Sending message via AMQP using qpid-proton-c fails with error SSL Failure: Unknown error

I am trying to get the sender example from the azure-service-bus-sample working on Linux based system (https://github.com/genieplus/azure-service-bus-samples/blob/master/proton-c-queues-and-topics/sender.c). However, when I try to execute it, it…
Bechir
  • 987
  • 10
  • 26
0
votes
0 answers

Unknown hostname exception when trying to connect to qpid host

I am using qpid broker(0.28) and qpid JMS client to communicate to the broker. I want to use amqp1.0 protocol and when I try the example given here, using a connection url as amqp://guest:guest@localhost:5672?clientid=test, I get error as it is not…
bhawna
  • 31
  • 3
0
votes
2 answers

Writing protocol buffer data in C++ and reading in Java over AMQP/JMS

So I'm a bit stumped on this. I've got an AMQP class implementation on the C++ side that ultimately serializes my Porotocol buffer object to a string: qpid::messaging::message qmesg; std::string…
Dane Allen
  • 131
  • 1
  • 1
  • 5
0
votes
1 answer

How to uninstall "qpid" in centos6.3

I am unable to uninstall qpid from my centos VM. I have tried following:: -sudo yum erase qpid-cpp-server -sudo yum remove qpid-cpp-server But Its not getting uninstall.
Reetesh Nigam
  • 133
  • 2
  • 2
  • 15
0
votes
1 answer

Qpid Variant type to handle byte arrays c++

I'm working on a project and I need to be able to send byte arrays through Qpid, but Variant has no idea what an array is. Is there some way, I can convert the byte array into something Variant, like maybe a Variant::list of unit8, or a…
Teddy Black
  • 193
  • 2
  • 14
0
votes
1 answer

spring amqp ReplyRequiredException

I have a request/reply implemented using spring integration and amqp. The requests may take long time to process (they may take even an hour for some cases) , for some reason the client throws exception - Exception in thread "main"…
Mark1234
  • 589
  • 2
  • 8
  • 24
0
votes
1 answer

Reading from Service Bus via Qpid JMS client fails

I am trying to connect to Windows Service Bus from Qpid JMS client. Authentication and handshake succeeded, but can not get anything from a topic or queue. My code is based on tutorial provided here. On reading attempt getting message from Service…
Jurica Krizanic
  • 1,072
  • 2
  • 11
  • 26
0
votes
1 answer

AMQP 1.0 support in ActiveMQ - can't set prefetch

We're trying to build a job queue system on top of ActiveMQ 5.9.1. We're using the AMQP 1.0 support in activemq, currently using the qpid jms library for the client code. For the purposes of a job queue system, it is vital that we can set prefetch…
JonathanS
  • 211
  • 1
  • 4
0
votes
1 answer

Gem install qpid_messaging fails on stdc++ despite having package installed

Trying to install qpid messaging gem with the following (in Fedora 19): $ gem install qpid_messaging -v '0.20.2' Failed with the following message: Building native extensions. This could take a while... ERROR: Error installing…
etsauer
  • 347
  • 2
  • 6
  • 12
0
votes
2 answers

ServiceBus over AMQP looses redelivered messages

We have on-premise installation of ServiceBus. I noticed strange behavior when dealing with redelivery. I created sample application, see bellow. This application will post 5 messages to topic with persistent queue and than tries to read all the…
jan_bar
  • 71
  • 8