Questions tagged [messagebroker]

A Message Broker is a pattern which is designed for purpose of consuming messages from applications and performing actions like transformation , providing a point-to-point and publish-subscribe pattern of message routing mechanism. It mediates communication among applications, minimizing the mutual awareness that applications should have of each other in order to be able to exchange messages, effectively implementing decoupling.

Message broker is an intermediary program module which translates a message from the formal messaging protocol of the sender to the formal messaging protocol of the receiver. Message brokers are elements in telecommunication networks where programs (software applications) communicate by exchanging formally-defined messages. Message brokers are a building block of Message oriented middleware.

Resources:

648 questions
3
votes
2 answers

How to display delivered and read receipts in MQTT broker Mosquitto?

I want to display delivered and read receipts to users in my messaging platform. I am using Eclipse's Paho library with Mosquitto as the broker. Since Mosquitto does not store messages, which is the best way/plugin to Display delivered receipts -…
Ankit Nayan
  • 363
  • 7
  • 18
3
votes
1 answer

how to send a file like word via RabbitMQ

I need to be able to send files like pdf or word via RabbitMQ (I think answer might be more generic meaning not specific to RabbitMQ but any broker I am however using RabbitMQ). Is there are way to send them as mimes or do I need to convert to…
Shahzeb
  • 4,745
  • 4
  • 27
  • 40
3
votes
1 answer

An unbound Fanout Exchange loses data

When I pass a number of messages to Fanout exchange(which is not bound to any queue,yet) and stops the publisher the messages sent to the exchange are lost. The exchange stops. Is it possible that an unbound Exchange can hold messages published?
3
votes
1 answer

Does NATS scale horizontally ( throughput )

We are using NATS and use clustering of 3+ nodes. We have several producers and many consumers. The message sizes are small ( ~100bytes ) however our throughput is somewhat high. ~40k/sec. All traffic is on 2x10gbps bonded internal networks. I was…
Quinton Pike
  • 3,823
  • 8
  • 31
  • 37
3
votes
2 answers

Consumer not receiving message in Apache Kafka

I am building an Apache Kafka consumer to subscribe to another already running Kafka. Now, my problem is that when my producer pushes message to a server...my consumer does not receive them. Here I give Producer code, Properties properties…
3
votes
1 answer

Can a Kafka broker retain messages while there are no consumers connected?

I am trying to build a pub/sub application and I am exploring the best tools out there. I am currently looking at Kafka and have a little demo app already running. However, I am running into a conceptual issue. I have a producer (Java code): …
Brett
  • 11,637
  • 34
  • 127
  • 213
3
votes
2 answers

Do I need a message broker like service bus with BizTalk?

I want to connect my database to CRM and as far as I understand BizTalk is the best choice. I know that BizTalk has its own messaging system, but is it enough considering the stability of my data or shall I put a message-bus in between?
Ashkan S
  • 10,464
  • 6
  • 51
  • 80
3
votes
1 answer

How to create xml in esql

I am trying to create an xml of the below format 5678 I got a clue from DECLARE sp1 NAMESPACE 'http://www.ibm.com/space1'; /* Namespace declaration to associate prefix 'space1' with the namespace…
Abx
  • 2,852
  • 4
  • 30
  • 50
3
votes
1 answer

Errors when handling multiple topics, publishers and subscribers + WSO2MB

I've got the Message Broker 3.1.0, and I'm trying to publish messages through a java program and subscribe through the JMeter script which I'm running it in headless mode in Windows. So in my case I've got three topics added in the MB,three…
Kulasangar
  • 9,046
  • 5
  • 51
  • 82
3
votes
2 answers

RabbitMQ: Bi-directional federated brokers, how do you make all queues pop the message?

I have two brokers configured[1] with federation plugin. Both are pointing to each other as upstream. My test is: publish a message on broker A consume on broker B The result is: consuming on broker B works < good > the queue on broker B pops the…
Trevor Boyd Smith
  • 18,164
  • 32
  • 127
  • 177
3
votes
0 answers

How to receive and display Message from MQTT server to your Table View

i have an app that sends and receive data message using terminal in MQTT server. what i want to do is create a Table View and display the Messages from the server. how do i do that ? This is my codes. you can use this code if you like .Just Download…
3
votes
1 answer

Number of messages flowed through queue

I have Queue A. I have used this in one of my message flow which is up and running. I want to know the number of message dropped in to the queue A on particular day or time interval. Kindly help me in finding out this.
Bidda
  • 39
  • 2
3
votes
1 answer

Sending messages to MQOutput node

Just want to confirm the correct way the MQ delivers messages to the MQOutput node. Recently came across a situation where i a felt bit confused. Here is the scenario. I have a local queue on Qmgr,say(A) which receives messages from applications and…
Ganesh G
  • 93
  • 1
  • 9
3
votes
2 answers

What is the difference between automatic and commit transaction modes in WMB 8.0 compute node?

What is the difference between automatic and commit transaction modes in WMB 8.0 compute node ? We have developed a message flow with a compute node which inserts records into Oracle DB tables. The flow looks like MQInputNode (Out terminal) --- >…
Pushparaj S
  • 31
  • 1
  • 4
3
votes
1 answer

ESQL - Does anyone know of a tool which can provide static code analysis for ESQL?

I am writing a large application and was wanting to conduct static code analysis on my code, however I am struggling to find a tool which can do this for ESQL. I have used SonarQube before with Java, but there is no ESQL or SQL plugin, just PL/SQL…