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

How to solve `Building CXX object src/CMakeFiles/qpidcommon.dir/qpid/sys/posix/Condition.cpp.o` while compiling qpid-cpp within Docker Alpine?

Qpid-cpp has been compiled in a Ubuntu docker image and the current size is 1.86GB: REPOSITORY TAG IMAGE ID CREATED SIZE ubuntu-qpid-cpp latest 7e60a5eabee1 44 hours ago 1.86 GB Aim To compile…
030
  • 10,842
  • 12
  • 78
  • 123
0
votes
2 answers

Qpid and JNDI for encrypted messages

I'm currently working on a JMS project and I have created 2 keys and 2 certificates as well as a TrustStorage, mytruststore which I created through Qpid's UI. In my jndi.properties file I have the following code: //Set the InitialContextFactory…
HelloIT
  • 172
  • 2
  • 22
0
votes
0 answers

JMS server can't recognize message.body and raise an exception: "Protocol message contained an invalid tag (zero)." It works fine with Stomp protocol

Request from python-qpid-proton client to JMS server through ActiveMQ. message.body contains a Protobuf. JMS server can't recognize message.body and raise an exception: "Protocol message contained an invalid tag (zero)." It works fine with Stomp…
Rkvtsn
  • 31
  • 7
0
votes
1 answer

Java: Apache Qpid implemented with Java

I'm new to Qpid and I'm trying to set up the environment. After having read tons of documentations I managed to download the Apache Qpid and have it run in localhost:8080 I have also installed maven, cmake. Now I'm trying to start a new maven…
HelloIT
  • 172
  • 2
  • 22
0
votes
2 answers

SpringBootTest: how to know when boot application is done

Spring boot integration test looks like this @RunWith(SpringRunner.class) @SpringBootTest(classes = Application) class IntegrationTest { static QpidRunner qpidRunner @BeforeClass static void init() { qpidRunner = new QpidRunner() …
Marko Vranjkovic
  • 6,481
  • 7
  • 49
  • 68
0
votes
1 answer

QPID Proton-J deprecates Messenger - but what to use instead?

I'm using Apache QPID with Java an as AMQP implementation and I've just got proton-j upgraded to version 0.16 (automatically, even though Maven web site still lists 0.15 as the latest version - weird) and now my use of the Messenger API is marked as…
Guss
  • 30,470
  • 17
  • 104
  • 128
0
votes
0 answers

unable to run the bundled example of QPID Proton-j

I am new to QPID and AMQP in general. I have setup a QPID broker 6.1.0 with a virtual host with name "example". This virtual host has a queue named "test-queue-1" which is bound with "amq.direct" exchange. Now, I am trying to use the java messenger…
Peeyush Goela
  • 633
  • 5
  • 8
0
votes
2 answers

Qpid receiver on Azure EventHub

I have already working application based on Azure EventHub. Now I need write java receiver that connects to the existing infrastructure. Existing configuration: Event Hub > SomeName > Consumer Group > SomeGroupName In the administrative console I…
Dewfy
  • 23,277
  • 13
  • 73
  • 121
0
votes
1 answer

How to make qupid consumer exlusive using apache camel?

I am trying to connect single qpid broker via to clients. I want only one of these two client should listen the qpid queue. I am trying this with apache camel
Abdulhamid
  • 35
  • 5
0
votes
0 answers

Unable to sent message into apache qpid jms 6.0.5 queue

I am using apache qpid jms 6.0.5 server and getting below exception. Any suggestion or help ... Exception in thread "main" org.apache.qpid.AMQProtocolException: Protocol: 0.0 is required by the broker but is not currently supported by this…
0
votes
0 answers

Unable to receive a message from Azure Service Bus in Qpid JMS (qpid-jms-client-0.11.1.jar) sent from a .Net app

I have created 2 Java Demo applications which connects to an already configured Azure Service Bus using the following guides: How to use the Java Message Service (JMS) API with Service Bus and AMQP 1.0 -…
Storage
  • 83
  • 1
  • 9
0
votes
1 answer

"error: changes meaning" when installing Apache qpid

I'm trying to install the qpid proton 0.14.0 libraries on a SUSE linux system in order to integrate AMQP messaging into a large c++ program. The installation requires calling "cmake" and "make all". Upon calling "make all", the build gets to 32%…
Nik
  • 1
  • 1
  • 5
0
votes
1 answer

spring JMS producer error: Session: Message send failed due to timeout waiting on broker enforced flow control

I use Spring JMS to send and receives messages with apache QPID. I got this error message: Session: Message send failed due to timeout waiting on broker enforced flow control What cause it? Is it due to queue exhausted? Where could I config the…
Springgrass
  • 41
  • 1
  • 5
0
votes
1 answer

Apache Qpid HTTP REST end points not working/responding

Applicable to Qpid Java Broker: 0.32 onwards to 6.0.4 Apache Qpid HTTP REST end points are not responding when requests are sent using following two ways even though correct authentication details( user name "admin" and password "admin") are…
Integration
  • 111
  • 7
0
votes
1 answer

Use of Apache Qpid C++ JMS client

I want to subscribe to a Java Messaging Service (JMS) publish-subscribe service using Apache Qpid. However rather than using Java, I want to use C++. My customer told me this was possible (and even said trivial). Are they correct? Can anyone point…