Questions tagged [messaging]

Messaging refers to the design pattern whereby discrete messages are used for communication between objects or processes. Messages can be simple data, complex data structures, or even code. This pattern is often used for asynchronous or parallel computing.

2583 questions
1
vote
1 answer

TPL Dataflow message type allocation pattern possible?

I run an algorithm that receives out-of-process messages of different types. The incoming messages are actually byte arrays and each byte array is pre-pend by a byte array flag indicating the message type. I like to understand whether it is possible…
Matt
  • 7,004
  • 11
  • 71
  • 117
1
vote
2 answers

Rails form creating empty object - nested resource

Looked at a number of resources and can't seem to figure this out. I am working on a messaging system based on this code by BinaryMuse: https://github.com/BinaryMuse/so_association_expirement/compare/53f2263...master It doesn't have a respond…
jon
  • 170
  • 1
  • 13
1
vote
0 answers

Google Cloud Messaging client not receiving message from server (GCM)

Possible Duplicate: android GCM doesn't work Using the GCM demo project I managed to register a few devices (in the web site, running in a Tomcat server I can see them listed) but when I click on the Send Message button nothing happens on the…
manuel
  • 356
  • 2
  • 9
1
vote
1 answer

receive and store SMS to a specific application

i need some help in starting off my project. i would like to know if it is possible for android to receive a SMS to the application im creating. ok..here is the senario: i have to create a classroom voting application where the teacher using android…
Riyas2329
  • 43
  • 3
  • 14
1
vote
2 answers

Message Queues: Are messages lost on network failure?

I am wondering about the reliabilty of message delivery in messaging systems such as WebsphereMQ or ActiveMQ (used via JMS). As far as I know messages can be buffered if the recepient is unavailable and will be delivered later. Now I am wondering…
Joe23
  • 5,683
  • 3
  • 25
  • 23
1
vote
1 answer

Web based Message system

I am at design stage of a simple private message inbox solution for a small MVC application.How do I design the database to be able to track a parent message(new message) and subsequent children(reply).Any ASP.NET tutorial to get me started would be…
1
vote
1 answer

Messaging, distributed task scheduling, cache replication framework (in Java)

I need a framework for clustering: messaging, cluster join/leave, distributed task scheduling and cache replication. Preferably all handled under the same framework, with initializition of IPs from DB, with split brain protection, with leader…
1
vote
1 answer

Mule Aggregator - Streaming Aggregation

The collection aggregator used in the Mule 2.0 framework works a bit like this: An inbound router takes a collection of messages and splits it up into a number of smaller messages - each smaller message get stamped with a correlation id…
pjp
  • 17,039
  • 6
  • 33
  • 58
1
vote
5 answers

Web application to user instant messaging

What options are available for receiving instant alerts from web applications? I have a time sensitive web application I need to tend to (approving expediated purchase order requests). I have thought of being notified by e-mail and SMS. Are there…
Scooby
  • 755
  • 2
  • 7
  • 9
1
vote
0 answers

Rationale for JetLang (Threadless Concurrency) vs Java Executor

Possible Duplicate: When is messaging (e.g. JMS) an alternative for multithreading? I would like to use JetLang in a project. I know that, JetLang belongs to the class of threadless (messaging based) concurrency mechanisms like Erlang, Scala…
srini.venigalla
  • 5,137
  • 1
  • 18
  • 29
1
vote
0 answers

How to generate delivery report for SMS sent by any SMS app on android

I am working on a app which is suppose to capture delivery report for SMS sent by any SMS app in the phone. I have worked on messaging app that sends and also collects delivery report. It is done by setting pending intent : PendingIntent…
TNSharma
  • 13
  • 5
1
vote
1 answer

C# Client to Client Messaging

I will try and explain exactly what I want to achieve first. Imagine two users are using a windows forms application, when User A opens a particular form a lock is applied to the data record underlying the form so that only that user can make…
MrEdmundo
  • 5,105
  • 13
  • 46
  • 58
1
vote
2 answers

In-order multi-threaded message processing

What is a common approach to in-order multi-threaded message processing? Consider the following example: I have a publisher that sends numbers into a queue: 1, 2, 3, 4, 5, 6, 7 My goal is to process odds and evens sequentially. One possible…
Igor Nikolaev
  • 4,597
  • 1
  • 19
  • 19
1
vote
1 answer

Is there an API for WebSphere Platform Messaging (WPM)?

I am looking for API for WebSphere Platform Messaging (WPM), specifically for Java. IBM's article about WPM reads that WPM and MQ are separate products and that WPM is available through MQ link. However, such approach is unacceptable for me. I…
strenx
  • 26
  • 2
1
vote
1 answer

Messaging using BeginReceive and EndReceive on ServiceBus does not work for me

I need asynchronous messaging on the bus. This is the code I'm using: //set callback to get the message MessageReceiver messageReceiver = MessagingFactory.CreateMessageReceiver(BaseTopicName + "/subscriptions/" + addressee, …