Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
273 views

MSMQ competing consumer

Can someone tell me whether MSMQ (using transactions) supports competing consumers? Basically, I have multiple threads dequeueing messages off of a single queue. Just wanted to make sure this will ...
1
vote
1answer
388 views

Benefits of using MQTT vs another push notification service for android?

Hey guys, I am new to android development and I am curious on what is the "best" or most customary way to enable push notifications on an android app from a server. i have been reading online and ...
1
vote
0answers
77 views

WCF MSMQ last message in the transaction

I am wondering if there is a way in WCF MSMQ to know if iam processing the last message in the transaction I did lot of researches I found that there is a property IsLastInTransaction but this ...
0
votes
0answers
79 views

MSMQ - Using remote read and remote send on the same queue

If using MSMQ 3.0, or 4.0: I fully understand that the following is not a common, or "correct" way to use a queue, but the point is solving a specific issue immediately. Is it possible to perform a ...
0
votes
1answer
244 views

MSMQ Transaction with COM (python)?

I'm attempting to use MSMQ from Python using the win32com library, similar to this example. I'm able to put messages onto the queue, but in this case it's a transactional queue, so I need to create a ...
0
votes
1answer
186 views

What happens to an MSMQ transaction when the application is stopped?

I have Windows Services that are reading from MSMQ queues, performing some work, and then sending to either another queue or another service. Everything is transactional, so if there is a failure the ...