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
2
votes
1 answer

Cannot instantiate class: org.apache.qpid.jndi.PropertiesFileInitialContextFactory

I am writing a Qpid client that sends a message. The example code that I am using is : private void runTest() throws Exception { Properties properties = new Properties(); …
user4889345
2
votes
1 answer

Azure with Spring JMS receives same messages are received multiple times and messages are moved into DLQ

I am creating consumer using qpid amqp-1-0-client and related jars to connect to Azure service bus. I am able to connect to Azure queue and receive messages, but the problem is I am receiving same message multiple times from queue eventhough i…
anonymous
  • 483
  • 2
  • 8
  • 24
2
votes
2 answers

How can I Send/Receive a message from Azure Service Bus from Qpid JMS (qpid-jms-client-0.11.1.jar)?

I am currently researching how to connect to Azure Service Bus using Qpid JMS (qpid-jms-client-0.11.1.jar). I have created a Demo Java application SimpleSenderReceiver which connects to an already configured Azure Service Bus using the following…
Storage
  • 83
  • 1
  • 9
2
votes
0 answers

Is there any AMQP iOS client available which supports AMQP 0-10 version?

I am trying to get information about any iOS client that supports AMQP 0-10 version. I am using Qpid broker 6.0.4 with AMQP 0-10 and looking for a compatible iOS client (Objective-c or Swift).
2
votes
1 answer

Messages marked as Deferred when consuming Azure Service Bus messages with Spring JMS and qpid

I can receive messages from my service bus subscription just fine, but when an exception occurs in my listener, it appears that ultimately a Disposition frame with state=Modified and undeliverableHere=true is sent to service bus. The docs for…
UrLicht
  • 939
  • 1
  • 14
  • 25
2
votes
1 answer

Can't get Java QPID to work

I'm trying to create a simple AMQP application in Java. The application should simply bounce a number between two clients. Each time the number is received the client should add 1 to it and send it back to the other client. However, I cannot get the…
Pieter
  • 3,339
  • 5
  • 30
  • 63
2
votes
1 answer

QPID finer AMQP control with the high-level API?

At first I thought QPID documentation is great, but now I find it confusing. I'm using the C++ API of QPID-0.6 with the qpid::messaging namespace (I saw I have access to low-level AMQP with qpid::client, but it is not what I wish now). With AMQP, I…
ron
  • 9,262
  • 4
  • 40
  • 73
2
votes
0 answers

Spring, Junit, and Qpid - AMQSession.Dispatch won't stop so the test will not end

I'm running a few integration tests with Qpid (qpid setup based on the answer to this previous question. The application is a Spring Integration flow, receives an incoming message and processes. The test will receive the messages, process, and then…
JGN
  • 85
  • 1
  • 8
2
votes
3 answers

WSO2 MB 3.0.0 Startup Error : Wait until Qpid server starts on port 5672

I just downloaded the WSO2 MB 3.0.0. And when I trying to start server I'm getting following error. [2016-04-28 14:43:21,986] ERROR {org.wso2.carbon.andes.internal.QpidServiceComponent} - Wait until Qpid server starts on port…
jay
  • 477
  • 5
  • 13
2
votes
2 answers

Azure EventHub, unable to subscribe for Receiving

I try to receive messages from an Azure EventHub via Python, unfortunately I am not able to subscribe to it. My script bases on https://gist.github.com/tomconte/e2a4667185a9bf674f59 and another similar issues was already asked in python script which…
user1816723
  • 53
  • 1
  • 7
2
votes
0 answers

Trying to communicate with azure service bus from android device using proton-j

I am trying to make an android app to talk to azure service bus using proton-j library When I try to add proton-j-0.11.1 jar file as library on my android project. Try to send to azure service bus but end up with an exception Broken EPIPe…
tourili
  • 141
  • 1
  • 8
2
votes
1 answer

Which ActiveMQ transport i should choose?

We use ActiveMQ, php and stomp. And we found that when ActiveMQ rebooted consumers working over stomp can't recognize that connection lost. I found, that only stomp 1.2 support heartbeat. And ActiveMQ uses stomp 1.1 and newest php stomp…
Hayate
  • 653
  • 1
  • 9
  • 25
2
votes
0 answers

Qpid C++ Messaging API & amqp .net lite

I am developing a application in C++ using Qpid C++ Messaging API. The application should send messages to another .net application running amqpnetlite. However, when initiating the connection, on the C++ side, I got this security error:…
AaronT
  • 21
  • 3
2
votes
1 answer

Camel AMQP - AMQConnectionFactory ClassNotFound

I'm using Camel 2.13.3 and trying to establish a connection via AMQP to a remote ActiveMQ instance. According to the Camel AMQP docs is should be sufficient to add the following dependency org.apache.camel
DaveH
  • 7,187
  • 5
  • 32
  • 53
2
votes
1 answer

Camel AMQP transactions issue (with Qpid client)

I am trying to add transactions over an AMQP connection which I created for connecting to an external AMQP broker (which I do not have access to) from my project. In order to connect to the AMQP broker with SSL I am using a ConnectionFactory…
florin
  • 21
  • 5