Questions tagged [mom]

Message Oriented Middleware

Message-oriented middleware (MOM) is software or hardware infrastructure supporting sending and receiving messages between distributed systems.

MOM allows application modules to be distributed over heterogeneous platforms and reduces the complexity of developing applications that span multiple operating systems and network protocols. The middleware creates a distributed communications layer that insulates the application developer from the details of the various operating system and network interfaces. APIs that extend across diverse platforms and networks are typically provided by MOM.

66 questions
2
votes
3 answers

ActiveMQ failover seems not to work

I have super simple scenario: one broker and one consumer with durable subscription. This is the code of my consumer app: package test; import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.Destination; import…
Ihor M.
  • 2,728
  • 3
  • 44
  • 70
2
votes
1 answer

RabbitMQ Vs. MSMQ for Microsoft Azure Cloud Platform

I would like to use a Message-Oriented-Middleware (MOM) with Microsoft Azure cloud platform. I've done a little comparison between RabbitMQ and MSMQ. The first one seems to be better for my case. It is easier to work with and features as monitoring…
Coccinelle
  • 527
  • 1
  • 5
  • 6
2
votes
2 answers

Is there a Message Bus provider that allows for Durable Subscribersand full replay?

I am trying to find a message bus provider that supports Durable Subscribers and allows me to replay, in order, based on the message timestamp, all messages for a given topic. Futhermore, I would like the message bus to reset each durable consumer's…
dvogel
  • 421
  • 4
  • 9
2
votes
1 answer

How to instruct IBM Websphere MQ to convert JMS Headers from EBCDIC to ASCII

I have a Java app on Weblogic 11g using a Message Bridge to talk JMS with Websphere MQ. The MQ server is running on IBM z/OS platform which uses EBCDIC encoding. I need to use the Weblogic message selector feature to filter messages on the bridge.…
1
vote
3 answers

Jquery UI Datepicker with EOM and MOM

I need implement a Jquery UI Calendar that when a users click any date, it select automatically to the next MOM or EOM. For example, if the user clicks on April 9th, it must go to 'April 15th', or if clicks on 22 February, it must go to 'Feb 28' or…
Leandro Bardelli
  • 10,561
  • 15
  • 79
  • 116
1
vote
2 answers

Does ActiveMQ uses TCP as its transport layer protocol

I've encounter a problem where our WebSocket connections to ActiveMQ 5.13.3 are terminated abruptly. I thought, I might use WireShark to inspect the TCP layer for clues why the connection may be corrupted, but I'm not sure the ActiveMQ uses TCP…
altgov3en
  • 1,100
  • 2
  • 18
  • 33
1
vote
0 answers

MacOS groff -mom unable to produce hyperlink

I have been trying to output a pdf using groff mom. I am using the below: groff -mom test.txt | pstopdf -i -o test.pdf Everything is as expected, except it completely ignoring .PDF_WWW_LINK and I can't figure out why. I am on MacOS, and cannot use…
1
vote
1 answer

RabbitMQ and Application Decoupling

I need to setup RabbitMQ in an attempt to redesign our architecture using asynchronous messaging. Existing Application Flow: JEE web application (via browser) creates a new thread. This thread creates a new OS process to invoke a Perl script to do…
user1549605
  • 273
  • 3
  • 17
1
vote
0 answers

Using MoM for data-transfer in distributed-systems?

I'm new to distributed systems and try to get an fitting architecture and frameworks for my scenario. I have an scenario, where many heterogeneous computers shall be connected as a distributed system. Some computers can mine data and store these…
Sven D.
  • 23
  • 8
1
vote
0 answers

MySQL get percentage of year over year for each month

I'm trying to get in the same result the last 12 months and their values vs same months from the last year and the percentage difference. ThisYearMonth | ThisYearValue | LastYearMonth |…
Bogdan S.
  • 96
  • 4
1
vote
1 answer

Message Oriented Middleware for Mobile Device Development

I would like to write a application for mobile devices (blackberry and android). Is there a (free) client to connect to a MOM? The MOM should guarantee message delivery even if the connection is closed and reopened. We thought about using jms, but…
Wienczny
  • 3,958
  • 4
  • 30
  • 35
1
vote
1 answer

ActiveMQ forwarding bridge with failover

Here is what I try to achieve with ActiveMQ: I'd like to have 2 clusters of brokers: clusterA and clusterB. Data between these 2 clusters should be mirrored. So, when clusterA receives a message it will be stored at storageA and also this message…
Ihor M.
  • 2,728
  • 3
  • 44
  • 70
1
vote
0 answers

Use of MOM in heterogeneous cluster system

If there is a Heterogeneous distributed clustered system , for an example let's assume about clustered server system , can we use MOM (Message Oriented Middlewear) there , if can ,can you give me some example on how it implement.
Thara Perera
  • 574
  • 6
  • 6
1
vote
1 answer

Handling JMSExceptions when using JMS, specifically ActiveMQ?

In the following snippet: Connection connection=getConnection(); try { Session session=connection.createSession(); try { Queue queue=session.createQueue("foobar"); MessageConsumer consumer=null; try { …
sigpwned
  • 6,957
  • 5
  • 28
  • 48
1
vote
1 answer

ActiveMQ Message Group Consumer Selection Across Multiple Queues?

ActiveMQ Message Groups are a wonderful feature for load balancing across multiple consumers. In short: a stream of messages is partitioned across multiple consumers of a single queue according to a group identifier embedded in the message…
sigpwned
  • 6,957
  • 5
  • 28
  • 48