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

How can I create procedure in ESQL for select data from database

I want to be able to enter a BankID into XML file and if record is exist then have integer result,if doesn't should display another result My code is written in IBM web sphere message broker toolkit Please help me about this simple problem!!!!
-3
votes
2 answers

ClassCastException while casting activemqObjectMessage

why I can't cast ActiveMQObjectMessage in this code? public void onMessage(Message message) { try { ActiveMQObjectMessage mqObjectMessage = (ActiveMQObjectMessage) message; //i got exception here …
Issa Khodadadi
  • 917
  • 7
  • 19
-3
votes
1 answer

How to run a server in mobile app over hotspot

I want to run a server(MQTT/HTTP) in my Andriod app over Hotspot. Nearby devices connect to mobile phone over phone's hotspot connection. Assumptions are that my phone has enough mobile data and hotspot support is enabled by the service provider. Is…
ranganath111
  • 457
  • 2
  • 7
  • 17
1 2 3
43
44