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
2 answers

Load Balancing among Producers (devices) and Messaging Server ( Apache Qpid or RabbitMQ )

Recently I started working on a project which require to implement Messaging and viable options are : Apache Qpid or RabbitMq , My Task is like this : +A+ >>.[Millions Devices (Producers) -- Connected to -- Messaging Server (Clustered -- Qpid or…
0
votes
1 answer

JMS Connection not throwing JMSSecurityException on sending message to unauthorized route

I am using Apache Camel with Spring to send messages from my Java service. I need to handle/trigger certain events in case of any error occurred at exchange. I am using below code to achieve my objective. try { …
0
votes
2 answers

How to use AMQP with Apache Camel and Apache CXF?

Greetings all I am using Apache Camel and Apache CXF in this example: http://camel.apache.org/better-jms-transport-for-cxf-webservice-using-apache-camel.data/cxfcamelexample.zip and I want to use AMQP instead of JMS but I don't know the…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
0
votes
1 answer

Encrypted messages using Apache Qpid

I'm trying to set up the encrypted messaging as shown in this guide/example I have finished all of the steps up to the jndi properties. When I go to build the source code given at this site (with imports included), I get the following…
punteek
  • 13
  • 4
0
votes
1 answer

Flush all messages from a Qpid Proton Connection instead of waiting?

Proton supports a feature called "bundling" which uses bandwidth more efficiently by sending multiple proton messages at the same time. I would like to flush all current messages instead of waiting. How do I do this? This is using the 0.17 Version…
Alex Delp
  • 31
  • 3
0
votes
1 answer

javax.jms.InvalidDestinationException: AMQ219002: target address does not exist [condition = amqp:not-found]

I am sending a message to ActiveMQ Artemis's queue with Qpid protocol,if I use below codes that can success ConnectionFactory connectionFactory = new JmsConnectionFactory("amqp://localhost:5672"); But when I use this way that will fail: Context…
JoeXu
  • 41
  • 1
  • 8
0
votes
1 answer

Receive message from a topic subscription from azure servicebus via QPID JMS

I am following this tutorial to read messages from a given subscription. I have created a Receive class like this - public class Receive implements MessageListener{ private static boolean runReceiver = true; private Connection connection; …
Anurag Sharma
  • 4,839
  • 13
  • 59
  • 101
0
votes
1 answer

Where does Apache Qpid GUI make changes on disk?

I'm trying to delete a port interface on Qpid without using the Broker Management GUI. Making the change manually (using the GUI) reveals that config.json is modified when a port is deleted (from using diff). My code solution uses sed to delete the…
LightningWar
  • 915
  • 1
  • 19
  • 35
0
votes
2 answers

Qpid for python , Not able to subscribe for a topic

Using Qpid for python, I am using the Container to connect to ActiveMq with the connector URL as: username:password@hostname:5672/topicName. In the web console i can see that for AMQP the connection is up . But instead of subscribing to existing…
Sunil VP
  • 63
  • 1
  • 1
  • 8
0
votes
1 answer

How to apply filters with qpid proton against azure event hubs

I am trying to apply a filter with qpid-proton-0.17.0 against azure eventhubs. Here is my filter code: proton::value filter_value; proton::codec::encoder enc(filter_value); enc << proton::codec::start::described() <<…
Greg Clinton
  • 365
  • 1
  • 7
  • 18
0
votes
4 answers

javax.jms.JMSException: Cannot send to a non-connected transport

I am using the qpid-jms-client.jar library to form a connection with a broker. My code is :: Properties properties = new Properties(); properties.load(this.getClass().getResourceAsStream("jndi.properties")); Context context = new…
user4889345
0
votes
1 answer

Unable to load KeyStore file in Qpid config

I have a keystore file that works good. I have tested it using the below command :: root@server # java -Djavax.net.ssl.trustStore=/tmp/apache-servicemix-7.0.0/deploy/qpid.jks SSLPoke esesslx0ghk.se 9443 Successfully connected Now I am using…
user4889345
0
votes
2 answers

AmqpProvider - Transport connection remotely closed

I am using ServiceMix alongside Apache camel and Qpid libraries to connect to a remote node to fetch JMS queues. My Bean config is ::
user4889345
0
votes
2 answers

javax.jms.JMSException: An existing connection was forcibly closed by the remote host

I am a newbie who is trying to integrate qpid with Apache Camel. I need to write java code to read and write from a queue using qpid. So firstly I downloaded the JMS example from qpid website. The code that I am trying to run is. /* * * Licensed…
user4889345
0
votes
1 answer

Azure Servicebus AMQP URL not accepted / or how to connect Liberty to Azure Service Bus

I got a problem getting Azure ServiceBus connected via AMQP through QPID to IBM WAS LibertyProfile. I followed the tutorial at Microsoft Docs Service Bus Messaging but I got following exception (the URL is obfuscated): Caused by: Not an AMQP URL…
blaine
  • 155
  • 1
  • 10