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
1
vote
0 answers

Java: Fast and generic gateway Data to Soap

I do want to build a generic gateway from a nested map (generated from binary data stream) to SOAP- clients. Background: a non-java-application which needs to call SOAP-Services can't generate json or SOAP/XML, but easily generate a custom protocol…
flaschenpost
  • 2,205
  • 1
  • 14
  • 29
0
votes
1 answer

Most suitable message-oriented middleware for cross-language client/server card game?

I am going to write a client/server card game for learning/practice purposes, and intend to use Java for both the client and server to begin with. In the future I will be looking to continue to use this project for learning, and thus will want write…
LDM91
  • 437
  • 1
  • 7
  • 16
0
votes
2 answers

Scalable architecture for many uses and large amount of data (MSMQ?)

im designing a system where i will have multiple users uploading large amount of data. My initial example is 100 users uploading 100Mb each every day. I need to get the data, insert it into a database, process the data in the database (ETL) and then…
Brian Hvarregaard
  • 4,081
  • 6
  • 41
  • 77
0
votes
0 answers

Generic methods for AMQP

I have some code which uses RabbitMQ's classes (pasted below) to place an event message to RabbitMQ queue. By doing this, my code is tied to…
Jay
  • 21
  • 2
0
votes
4 answers

How to obtain the last 30 years mean MoM in R?

I need to obtain the last 30 years mean value of TOTAL column month over month. The dataset is avaible here: library(dplyr) ENSO <-read.table("http://www.cpc.ncep.noaa.gov/products/analysis_monitoring/ensostuff/detrend.nino34.ascii.txt", header…
0
votes
1 answer

difference between AMQP, MOM, JMS and Message broker?

I'm getting confused to understand below terms Message broker: Its a application which is having one centralized place to keep messages for transmission / routing. AMQP: Its a an protocol (application) which is basically implemented by message…
Tim
  • 69
  • 7
0
votes
0 answers

how to get grand total values for MoM% and YoY% while using lookup or table calcuation in tableau

how to get grand total values for MoM% and YoY% while using lookup or table calcuation Hi, in my tableau viz i need to get the MoM% and YoY% for each row item and display grand total as well. I have tried using the quick table calculation of…
ind
  • 39
  • 1
  • 5
0
votes
1 answer

ActiveMQ MOM vs Remote Method vs Shared DB for SOA architecture in ColdFusion?

We are at an architecture crossroad. The previous system used used share DB for communicating between each other, but we want to get rid of the cfschedule polling latency. All the sub-system are written in CF. I'm researching on MOM, mostly…
Henry
  • 32,689
  • 19
  • 120
  • 221
0
votes
2 answers

Getting Number of out Core-Data SQLite Database

Using Core-Data to hold various information, one of which is a 'number' attribute (Int(16)). I try to take it out of the database using: number = (int)[info valueForKey:@"number"]; Unfortunately, this always gives some awful result, like 2895891275…
0
votes
1 answer

Cannot resolve method 'getBody' in Message

I’m quite new in JavaEE and trying to deal with JMS stuff. Here is the MessageBean that implement MessageListener and Override onMessage where I consequently try to receive message from Queue My code snippet: @Override public void onMessage(Message…
Gipsy King
  • 186
  • 2
  • 2
  • 14
0
votes
0 answers

ZeroMQ with czmq showing wild swings in performance tests

ZeroMQ with czmq is displaying some worrying performance. Timed results differ by a factor of almost 20. Specifically, in the following example, test times range from about 7ms up to 150ms!? Based on the provided czmq "grassland" [1] test examples,…
kmiklas
  • 13,085
  • 22
  • 67
  • 103
0
votes
1 answer

How does persistence session work in MQTT?

I use MQTT with QOS 1. I have a consumer and a producer. They communicate with each other (HiveMQ as a client). They use VerneMQ as a broker. I use a persistence session. If a consumer is offline and he goes later online, he should become all…
JetBrains
  • 456
  • 2
  • 6
  • 18
0
votes
1 answer

JMS Queue, One application as producer and consumer

By using only one JMS Queue, is it possible for an application to consume and produce on it ? Or it needs to use two JMS Queue ? One for consuming and other for producing. Thanks you in advance.
0
votes
1 answer

Oracle Materialized View for sensory data transfer

In an application we have to send sensory data stream from multiple clients to a central server over internet. One obvious solution is to use MOMs (Message Oriented Middlewares) such as Kafka, but I recently learned that we can do this with data…
Soheil
  • 473
  • 9
  • 23
0
votes
1 answer

Message oriented middle-ware - products which implement this concept?

I am trying to learn Message oriented middle-ware (MOM), and in that pursuit referring to online material. I understand that MOM is used to make two heterogeneous systems communicate by message passing. I also came to know of various products…
CuriousMind
  • 8,301
  • 22
  • 65
  • 134