msmq

Peeking an MSMQ Outgoing Queue with JScript

I created a script to monitor a set of queues, and, while it works perfectly with Remote Private Queues, it doesn't work with Outgoing Queues. I made an experiment by removing everything but the essential from the script, and I created the following test script: var info = new ActiveXObject("MSMQ.MSMQQueueInfo"); info.FormatName = /*<Qu...

Access To Message Queue System Denied Windows 7 Reading Windows 2003 - Windows 2008

I have an application that reads/writes from/to message queues on remote application servers. The clients usually run on machines outside of the servers' domains/forests with no trust setup. In Windows XP this was no problem, but with the introduction of Windows 7 it stopped working. After some research I found the suggested Registry ...

Does MSMQ need to be installed on your local machine in order to use remote queues?

When you send messages to remote queue, a temporary outgoing queue is created on your own machine. Does this mean that if MSMQ is not installed on your own machine, you can't use remote queues? ...

Can someone provide me with an example how to use a remote transactional queue in Msmq 4.0?

I would like to receive messages from a remote transactional queue. In Msmq 4.0, this should be possible, but I can't make it work. Does anybody have an example on how to do this? ...

Why are remote queue reads from msmq dis-encouraged?

If you have a windows service that will be installed on several machines, and all of them need to read from a queue, do you have any other option than reading remotely? ...

What to do if Msmq is down and your asp.NET application relies on it?

I have a Flex application which shows an assessment to a candidate. At the end of the assessment, the asp.NET application sends the session (of the candidate) id to a queue. A Windows Service on another machine handles the queue and performs some jobs. Now, if for some reason msmq is down, then the session id will not be sent to the que...

Msmq authentication from asp.net site

If you have an asp.net site sending messages to a remote queue, how do you handle authentication. If Windows Authentication is turned off, the network service sends a message to the remote queue. Does that mean that in de security tab of the queue, I need to add the netwerk service of the server sending the message? (by the way, I do not...

MSMQ - Why did I read message from queue whereas the sequece is not correct?

I encountered an issue where sometimes the lookupid will jump when I read message from queue by lookupID. The process is that I will use MQ_LOOKUP_PEEK_FIRST as the action parameter to read first message, and then use MQ_LOOKUP_PEEK_NEXT to read subsequent message until the queue is empty, then I will start using MQ_LOOKUP_PEEK_FIRST to...

Sending messages to a Msmq queue accepting a password

Isn't it possible to set a password on a message and congifure the msmq queue to accept messages with that password? I'm having trouble configuring my remote queue to accept messages from an asp.net site (network service account). I want my queue to be authenticated (just a checkbox on the queue), but I'm unable to add the Network Servic...

Configuring Acknowledgements with Spring.NET

Is there a way to configure Acknowledgements with Spring.NET? In Code it looks like this: var msgQ = new MessageQueue(OrdersQueueName) { DefaultPropertiesToSend = { AcknowledgeType = AcknowledgeTypes.FullReachQueue | AcknowledgeTypes.FullReceive, Admini...

MSMQ - Can I switch off multi threading mode for MQ manager

We recently experience message delivery out of order issue in our production enviroment, we believe this is because the MSMQ manger on remote Q is multi threading. Can we just simply switch it off to single mode. ...

How would you use msmq acknowledgements in an asp.net application?

What are best practices for using msmq acknowledgements in an asp.net application? In my case, some request from Flex to Asp.net (using WebORB or FluorineFX) adds an id to a queue. A windows service handles the queue to do a job with each id. Now, after I added the id to the queue, I can't just wait until a message arrives in the ackno...

Selective Reading From a Queue--Custom MSMQ Service, ESB, or Something Else?

Looking for some ideas/pattern to solve a design problem for a system I will be starting work on soon. There is no question that I will need to use some sort of messaging (probably MSMQ) to communicate between certain areas of the system. I don't want to reinvent the wheel, but at the same time I want to make sure I am using the right t...

Getting an item from the MSMQ Journal, which WCF created

Hello I have a message in a Journal of a Private queue (.\Private$\theQueue\Journal$) The message was created by WCF and processed (thus on the Journal). The problem is I want to get the message (the body is too large to view in the Admin Tools) so i have created the following code MessageQueue myQueue = new MessageQueue(txtQueueNam...

Read public MSMQ remotely from Windows XP

I'm trying to read a public MSMQ from a remote (Server 2008) machine. I know XP has MSMQ 3.0, and I've found some information that it doesn't support transactional, non-local receiving. Does that include trying to read from a remote queue? I've tried all sorts of combinations, and the only way I can read a message from the queue is by...

Why are my messages continuing to be retried After the error has been handled ?

I have a poisoned message service. When I receive a poisoned message, the error is handled by a poisoned message handler, which sends an email, which then moves the message off of the queue. the problem I'm having is rather than sending one email. It sends 4-5 and I'm really struggling to figure out why this is happening. The way I do th...

MSMQ with dynamic priorities

Hi. I'm doing a project with some timing constraints right now. Setup is: A web service accepts (tiny) xml files and I have to process these, fast. First and most naive idea was to handle this processing in the request dispatcher itself, but that didn't scale and was doomed from the start. So now I'm looking at a varying load of incom...

In Memory Data Cache for Performance in .Net Applications

Hey All - We have an application (rules engine) that has a lot of tables in memory to perform certain business rules. This engine is also used for writing back to the database when needed. The DB structure is denormalized, and we have 5 transactional tables, that also sometimes need to be queried for reporting. The issue here is, we w...

Export/Import a list of MSMQ Queues from one server to another

I have a significant amount of MSMQ Queues that need to be migrated to another server. Does anyone have (or know of) a script or tool that does that? Thanks. ...

Do MassTransit or nServiceBus support MSMQ over HTTP transport?

I understand it's available since MSMQ 3.0, is it available via any of the .NET ESBs? Is this possible with other MQ transports (ActiveMQ, etc)? Thanks, E. ...