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

Best IPC for Raspberry Pi, POSIX MQ vs, Message Broker protocol

I'm currently developing a Software for Raspian which should be decentralized. There should be Processes for getting sensor data, a process for running motor controllers, a process for controlling environmental variables, a Webserver for a WEB GUI,…
selbolder
  • 487
  • 5
  • 22
2
votes
4 answers

ActiveMQ without persistence

I'd like to set up a publisher-subscriber based communication protocol between a server producing messages and many clients receiving them. After a bit of research, I decided to go with ActiveMQ. I looked at a few tutorials and the ActiveMQ site and…
Max
  • 27
  • 1
  • 4
2
votes
1 answer

Order By in esql

I have an xml message like this 2 6 1 and i want to select the element with the lowest number something like this SET data[] = SELECT…
Kingo Mostafa
  • 357
  • 5
  • 21
2
votes
0 answers

Message broker by spring?

Is there a message broker module spring by spring ? I know spring integration is a module but that is ESB implementation and much more than message broker. Does spring provides the dedicated message broker module or we have to use external message…
scott miles
  • 1,511
  • 2
  • 21
  • 36
2
votes
1 answer

PHP & SOAP what use is a message broker?

I'm working on a solution to make certain data from a large database available to a remote website. My first thought was to simply cook up some soap web services to fetch certain data from the database. This could be done in just a few line, for…
Erikl
  • 75
  • 1
  • 4
2
votes
0 answers

Q: Akka as cross microservice messaging toolkit?

I'm looking for a framework/platform to (easily) support cross microservices communication. I was guided to look into Akka with Kafka. Unfortunately I was unable to find specifically this set-up and use case, but also didn't find any specific…
Willy
  • 59
  • 4
2
votes
1 answer

How to subscribe a topic in WSO2 MB 3.1.0

I've been working with the WSO2 Message Broker for a while and I clearly understood the way of publishing and consuming a message to and from a queue as well topics. According to this, it has not been mentioned anywhere how could I subscribe to a…
2
votes
0 answers

How to communicate same Java Application through Active-MQ Broker in Failover Scenario?

There are two clients named GC1 and GC2 which communicates with each other through ActiveMQ using Topic "GC1Alive" & "GC2Alive". They just send the heartbeat with each other by using these topics. Purpose The purpose of communication between two…
Zeb
  • 2,687
  • 7
  • 28
  • 36
2
votes
1 answer

Advantages of kafka multi broker

Hi I am pretty new to apache kafka, I dont know how much sense this will make. I did lot of research and couldn't find whats the advantage of multiple brokers. Went through the whole kafka documentation and couldn't find an answer for this. Say for…
aladeen
  • 297
  • 7
  • 18
2
votes
1 answer

RabbitMQ Consumer connection to rabbitMQ in https domain

I need to receive messages of a queue, but this queue is inside in another machine(AWS instance) with https(https://www.mymachine.com/rabbitmq) but when I want to establish a connection to the queue I get a NullPointerException. This is a part of…
Miguel
  • 909
  • 2
  • 8
  • 10
2
votes
1 answer

IIB - Get DOM Node from aggregated Message

I'm currently using IBM Integration Bus v9 and I'm trying to get the DOM Node (org.w3c.dom.Node) from an aggregated message to unmarshall it into a Java Object. In the first version of my flow, I was calling just one Web Service synchronously and,…
VincentS
  • 602
  • 1
  • 10
  • 24
2
votes
1 answer

Message Broker server in .NET (CoreCLR/DNX)

I want to know, Have we a Messaging System like JMS in .NET Platform ? I see something like RabbitMQ but that server wrote in Erlang, I want a .NET server Can anyone guide me how can I write a server based on AMQP protocol ? Can anyone guide me…
HamedFathi
  • 3,667
  • 5
  • 32
  • 72
2
votes
2 answers

WebSphere MQ and IIB: Events potentially fill up the queue manager

I'm writing an IIB flow that amongst other things generates Event messages (Monitoring functionality). In order to be able to handle all of these events, I need to do a durable subscription. But if I do that, and if the consuming application doesn't…
spakendralo man
  • 635
  • 2
  • 8
  • 21
2
votes
0 answers

IBM message broker V 6.1 esql

I have been using message broker 6.1 for integration to read a xml file into database. I am basically hard-coding the entities in esql to select from the path and inserting into database (oracle). PROCEDURE Populate_SUMMARY_CG() BEGIN …
nik_leon
  • 21
  • 1
2
votes
2 answers

Paho MQTT cleanSession set to false yet not receiving messages

I was testing MQTT for a project. I am also able to receive messages on a topic to which my client had subscribed when the client is connected. I have set QoS to 1 and cleanSession is set to false. But I am unable to receive messages which were sent…
Prateek Garg
  • 83
  • 3
  • 8