WebSphere Architect at a tech services company with 51-200 employees
Real User
2020-08-04T22:11:27Z
Aug 4, 2020
A message oriented middleware is basically an asynchronous way to have applications communicate with each other by exchanging messages. The middleware is agnostic to the content of the messages. The advantage is the the processes of the application will not need to wait for a return or answer if the other side is down.
This works very well with the store and forward pattern. However if you have a request reply pattern where you are dependent on receiving an answer before going forward, you will require the same uptime from your middleware.
Exchange patterns are: point to point: store and forward, request reply, and pub/sub
Message Oriented Middleware (MOM) abstracts communication between distributed applications by passing messages between them, enhancing interoperability and scalability across diverse platforms.
Widely used in enterprise environments, MOM facilitates asynchronous communication, ensuring that applications can send and receive messages without needing to be online simultaneously. This results in improved system resilience and flexibility. By decoupling the sender and receiver, MOM allows...
A message oriented middleware is basically an asynchronous way to have applications communicate with each other by exchanging messages. The middleware is agnostic to the content of the messages. The advantage is the the processes of the application will not need to wait for a return or answer if the other side is down.
This works very well with the store and forward pattern. However if you have a request reply pattern where you are dependent on receiving an answer before going forward, you will require the same uptime from your middleware.
Exchange patterns are: point to point: store and forward, request reply,
and pub/sub
Hope it helps