message-queue

The future of SQLServer Service Broker

Hi all, is there any information on the future of the Service Broker infrastructure in SQLServer? The team's blog (http://blogs.msdn.com/b/sql_service_broker/) is not very active and there were only minor changes in SQL 2008 R2 release. When building now a distributed system that needs async queueing and there is already a SQLServer / ....

Check for messages apache Qpid

Is it possible to check for messages from Qpid queue from unix/windows console? Here is how I check via GUI : http://i47.tinypic.com/pbu5d.gif I can see all the info from Qpid JMX Management Console, is there a something close to this that I can use in console? ...

What's the best way of accessing a DRb object (e.g. Ruby Queue) from Scala (and Java)?

I have built a variety of little scripts using Ruby's very simple Queue class, and share the Queue between Ruby and JRuby processes using DRb. It would be nice to be able to access these from Scala (and maybe Java) using JRuby. I've put together something Scala and the JSR-223 interface to access jruby-complete.jar. import javax.script...

persistant message queues

I have several services on different machines and a message-passing system suits my problem. Reliability - sent messages always delivered, even if one end goes down - is the key concern, although it should also be fast and reasonably bandwidth-efficient. So which message queue should I use? ...

Message Queues use and interesting features

I understand the basics of a message queue system, but I have no idea about the different systems out there. There seem to be a lot of open source and non-open source solutions out there. What are some of the ones out there and which one[s] have the most unique features? [Multicast, p2p, alternative message structures, device detection,...

Can I architect a web app so it can be deployed to either the cloud or a dedicated server / VPS ? How?

Is there are an architecture versatile enough that it may be deployed to either a cloud server or to a dedicated (or VPS) server with minimal change? Obviously there would be config changes but I'd rather leave the rest of the app consistent, keeping one maintainable codebase. The app would be ASP.NET &/or ASP.MVC. My dev environment is...

C++ Client connecting to IBM MQ over SSL

I need to change the C++ code to connect with WebSphere MQ using Client Channel defnition table. There are about 5000+ MQ clients and 10 MQ Servers on Windows 2003 with v6.0. Please help me if any one using C++ with CCDT. ...

Check to see if a message is in a POSIX message queue w/o removing it from the queue?

POSIX provides a way to read a message queue using its mq_receive function. This function also removes it from the queue. I need to find a way to check to see if a message is in the queue without removing it. ...

Subscribe Authentication With ZeroMQ

I am having a hard time understanding the ZeroMQ messaging system, so before I dive in, I wanted to see if anyone knew if what I want to do is even possible. I want to setup a pubsub server with ZeroMQ that will publish certain streams of data and to subscribe to some of those streams, a user must authenticate to see if they have acces...

Solutions for handling millions of timed (scheduled) messages?

I'm evaluating possible solutions for handling a large quantity of queued messages, which must be delivered to workers at a certain date and time. The result of executing them is mostly updates to stored data, and they may or may not be originally triggered by user action. For example, think of what you'd implement in a hypothetical lar...

Windows event message viewer for viewing messages sent by PostMessage() function

Couple of years ago i used some tool to monitor what event messages were being sent to a window. I can't remember the name right now. Can someone please tell me some tool with this functionality. ...

What are some good technologies in .NET that allow for queueing / dequeuing xml strings?

We are currently using a custom queueing system where a table in a SQL Server 2008 database has an xml column with some additional data. We use this when we serialize our objects to XML and store them in this table. Later, another application simply dequeues these items, deserializes them into the same object and preforms a certain task ...

NServicebus - Publish Message that contains HTML/XML

Hello, I am using NServicebus with a pubsub configuration. So far it has been really awesome and quite straightforward. However, I've noticed that one of my subscriber endpoints does not pickup messages that contain HTML/XML strings. For instance I am adding a POCO object that implements IMessage and one of the string fields contains som...

Is it possible to move an MQ message from one queue to another?

I need to move one single message from an MQ queue to another queue. This other queue may already have existing messages in it. Is there a way to do this? ...

Is there a minimal message queue?

Hi, I'm searching for a minimal message queue project. With minimal I mean something along this: No/Minimal setup / administration Uses http (so I don't need protocol/queue specific libraries/code) (Persistence would get extra points ;) (It should run on linux.) Is there such a project available? I once heard about a message queu...

any MQ services based on email ?

I am looking for MQ systems (rabbitmq , activemq) for our programs. Almost all MQ run on ports. I was wondering if there are any MQ systems running on smtp or email services. Basically I am trying to avoid the hassle of setting up a new software and opening up ports in different firewalls (its a hassle). ...

Can durable subscriptions survive client restart?

If I use durable subscription, can I restart my client and resubscribe without loosing any messages? (Assuming, my client does not unsubscribe in any way. Lets say it just crashes). Let me clarify. JMS 1.1 Spec says the following: 9.3.3.2 Reconnecting to a Topic using a Durable Subscription /* Reconnect to a durable subscription *...

notifying applications on db INSERT

Consider an application with two components, possibly running on separate machines: Producer - Inserts records into a database, but does little to no reading from the database. Multiple instances may be running concurrently. Consumer - Must be notified when a record is inserted into the database by an instance of component A. May also ...

How to use message queues when working with parrallel processes in php?

Hi, I'm trying to implement a program where a parent process opens multiple child processes (usually around 40) that run in parallel to each other. Now, I want to be able to get the child processes talking to the parent process to extract some information that only the parent process has. My plan was to use message queues in php but I...

How to choose between Message Queue / Asynchronous Web Service based interface.

We have an asynchronous backend service, which has a synchronous webservice interface (So basically the client has to call the interface twice). To improve this, we are thinking about moving to a message queue based interface or an asynchronous web service. Since I'm not familiar with asynchronous web service, I'm not sure how to c...