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

qpid AMQConnection.createSession() producing duplicate Session objects?

I have a bunch of threads, each creating an org.apache.qpid.client.AMQConnection and then a session. public void run() { Connection connection = new…
RaGe
  • 22,696
  • 11
  • 72
  • 104
0
votes
1 answer

Address to receive a message on an AMQP header exchange

What is the address I should use to binding to a queue to a header exchange using Qpid? I want the queue to only receive messages that have a specific header and value?
Prof Mo
  • 483
  • 5
  • 9
0
votes
1 answer

excpetion on reception of incoming message in qpid cpp client

First of all thanks for providing platform to discuss about issues. I found issue with qpid cpp client program. try{ cout << "Trying to open a connection" << endl; connection.open("1.1.1.8", 10002); session =…
Manohar
  • 153
  • 1
  • 1
  • 9
0
votes
1 answer

Singleton function call in constructor vs method

I'm working with the qpid messaging library. I have a singleton class that holds connection objects. I noticed that my application would core on exit depending on how I created the connection. If I created it in the singleton constructor or a static…
sfpiano
  • 369
  • 1
  • 8
0
votes
2 answers

Network Traffic in AMQP QPID

QPID AMQP I have a question regrading network traffic . suppose I have a Publisher on Machine A . The Qpid broker is running on Machine B . WE have two subscribers Machine C and Machine D (They both subscribe to same topics). Now Imagine a topology…
user179156
  • 841
  • 9
  • 31
0
votes
1 answer

Using boost 1_48 with Apache qpid on Windows

I stuck while trying to compile qpid c++ with boost 1_47_0 using Visual Studio 2010. Here is steps sequence, that I made: Built boost 1.48.0 Added BOOST_ROOT, BOOST_INCLUDEDIR, BOOST_LIBRARYDIR, etc. to %PATH% env. variable Installed cmake, Python,…
Sergei Danielian
  • 4,938
  • 4
  • 36
  • 58
-1
votes
1 answer

Qpid client connectionFactory to connect to ArtemisMQ cluster

I am trying to use Apache Camel and the Qpid JMS client to connect to an ActiveMQ Artemis active-active cluster running in two different nodes (VM's). I'm using ActiveMQ Artemis 2.17.0. Broker1 --- Host1:5672 (active) Broker2 --- Host2:5672…
Tim
  • 1,321
  • 1
  • 22
  • 47
-1
votes
1 answer

How to configure JmsListener on ActiveMQ for autoscaling using Qpid Sender

I have a kubernetes cluster with an activeMQ Artemis Queue and I am using hpa for autoscaling of micro services. The messages are send via QpidSender and received via JMSListener. Messaging works, but I am not able to configure the Queue/Listener…
Chris
  • 5,109
  • 3
  • 19
  • 40
-1
votes
2 answers

std::string is different when passed to method

I'm using an external library (Qpid Proton C++) in my Visual Studio project. The API includes a method like: container::connect(const std::string &url) {...} I call it in my code this way: container.connect("127.0.0.1"); but when debugging,…
Miotsu
  • 1,776
  • 18
  • 30
-1
votes
1 answer

Red Hat JBoss AMQ Clients Sample java program for failover and reconnection

I am trying to create a test program that will have failover feature. I am using and following this document. https://access.redhat.com/documentation/en-us/red_hat_amq/7.0/html/using_the_amq_jms_client/configuration#logging According document…
greja
  • 134
  • 10
-1
votes
1 answer

Installing Qpid-Proton in an Embedded Linux device

I'm trying to install Qpid-Proton(Python) in an Embedded Linux device to connect with Azure Event Hubs. Previously, I've successfully tested connecting a Linux PC with Azure Event Hubs using the installation steps given in …
Ram Prasad
  • 129
  • 1
  • 1
  • 8
-1
votes
1 answer

qpid_messaging ruby gem compilation fails (Apache Qpid messaging api)

I have tried many things but, no luck, im on Ubuntu 14.04.2 LTS. So Here it is the problem: http://pastebin.com/eYftQcaP
-2
votes
1 answer

Performance Issue while fetching message from pending message list of a queue

Queue Server: ActiveMQ, Protocol: AMQP API: Apache QPID client JMS 0.3.0 In normal case, It is working fine for me and fetch the message in few milliseconds. Facing issue in below scenario: Assume queue name : TESTQUEUE it has 500 pending messages…
krutik
  • 119
  • 4
1 2 3
22
23