active questions tagged msmq - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:46:32Zhttp://stackoverflow.com/feeds/tag/msmqhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1553730/how-to-clean-sys-conversationendpoints0How to clean sys.conversation_endpointsManjoor2009-10-12T10:06:31Z2009-11-27T08:09:37Z
<p>I have a table, a trigger on the table implemented using service broker. More than Half million records are inserted daily into the table.</p>
<p>The asynchronous SP is used to check sveral condition by using inserted data and update other tables. It was running fine for last 1 month and the SP was get executed withing 2-3 seconds of insertion of record. But now it take more than 90 minute. </p>
<p>At present sys.conversation_endpoints have too much records. </p>
<p>(Note that all the table are truncated daily as I do not need those records day after)</p>
<p>Other database activities are normal (average 60% CPU Utilization).</p>
<p>Now where i need to look??</p>
<p>I can re-create database without any problem but i don't think it is a good way to resolve the problem</p>
http://stackoverflow.com/questions/1804269/clear-message-queue-in-c0clear Message Queue in C#genesys2009-11-26T15:20:14Z2009-11-26T15:42:05Z
<p>Hi!</p>
<p>C#:
i use the Message Queue to send messages from one application to the other one (this has to work only on one particular machine)</p>
<p>I create the queu like this on the receiver side:</p>
<pre><code> string queueName = ".\\private$\\WZMSGQ";
if (MessageQueue.Exists(queueName))
msgQueue = new MessageQueue(queueName);
else
msgQueue = MessageQueue.Create(queueName, false);
</code></pre>
<p>and after this i start the sender application, where i create the queue like that:</p>
<pre><code> msgQueue = new MessageQueue(".\\private$\\WZMSGQ");
</code></pre>
<p>in the receiver Application I then retrieve new messages:</p>
<pre><code> Message[] messages = msgQueue.GetAllMessages();
foreach (Message msg in messages){
doSomething();
}
</code></pre>
<p>Now i'd like to do two things:</p>
<p>I would like to clear the message queue when instanciating the new MessageQueue instance on the receiver machine such that all old messages are gone.
I'd like to delete the message queue when the program ends, such that it does not exist anymore if i start the application the next time</p>
<p>how can I do that?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1587672/msmq-slow-queue-reading1MSMQ slow queue readingmrnye2009-10-19T09:12:47Z2009-11-25T02:35:33Z
<p>I am using an open source .Net library which uses MSMQ underneath. After about a week or 2, the service slows down (not timed exactly but general guess). It appears that what is happening is messages from MSMQ are only being read exactly once every 10 seconds. Normally, they are read instantly. So they will be read at T+10sec, T+20sec, T+30sec, etc. independent of when the message was sent (i.e. sometimes it takes 3 seconds for the message to be read, other times 9 seconds).</p>
<p>The current way I get it back to normal is simply deleting & recreating the queues. So the question is, what can build up in MSMQ queues to cause this kind of slow down? There are no messages in the queues when the slowdown occurs. Are there any advanced MSMQ analysis tools that give you a deeper look at the queues (as opposed to Computer Management)?</p>
<p>Oh, I forgot to mention, writing the messages to the queue still appears to be instantaneous. It is just reading the messages which shows this behavior. </p>
<p><strong>EDIT:</strong> Follow up question @ <a href="http://stackoverflow.com/questions/1794307/c-net-msmq-receive-method-timeout-problem">here</a> which is a bit more detailed and more focused.</p>
http://stackoverflow.com/questions/1794307/c-net-msmq-receive-method-timeout-problem1C# .Net MSMQ Receive() method timeout problemmrnye2009-11-25T02:33:17Z2009-11-25T02:33:17Z
<p>My original question from a while ago is <a href="http://stackoverflow.com/questions/1587672/msmq-slow-queue-reading">MSMQ Slow Queue Reading</a>, however I have advanced from that and now think I know the problem a bit more clearer.</p>
<p>My code (well actually part of an open source library I am using) looks like this:</p>
<pre><code>queue.Receive(TimeSpan.FromSeconds(10), MessageQueueTransactionType.Automatic);
</code></pre>
<p>Which is using the <a href="http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue.receive%28VS.80%29.aspx" rel="nofollow">Messaging.MessageQueue.Receive</a> function and queue is a MessageQueue. The problem is as follows. </p>
<p>The above line of code will be called with the specified timeout (10 seconds). The <code>Receive(...)</code> function is a blocking function, and is supposed to block until a message arrives in the queue at which time it will return. If no message is received before the timeout is hit, it will return at the timeout. If a message is in the queue when the function is called, it will return that message immediately.</p>
<p>However, what is happening is the <code>Receive(...)</code> function is being called, seeing that there is no message in the queue, and hence waiting for a new message to come in. When a new message comes in (before the timeout), it isn't detecting this new message and continues waiting. The timeout is eventually hit, at which point the code continues and calls <code>Receive(...)</code> again, where it picks up the message and processes it.</p>
<p>Now, this problem only occurs after a number of days/weeks. I can make it work normally again by deleting & recreating the queue. It happens on different computers, and different queues. So it seems like something is building up, until some point when it breaks the triggering/notification ability that the <code>Receive(...)</code> function uses.</p>
<p>I've checked a lot of different things, and everything seems normal & isn't different from a queue that is working normally. There is plenty of disk space (13gig free) and RAM (about 350MB free out of 1GB from what I can tell). I have checked registry entries which all appear the same as other queues, and the performance monitor doesn't show anything out of the normal. I have also run the TMQ tool and can't see anything noticably wrong from that. </p>
<p>I am using Windows XP on all the machines and they all have service pack 3 installed. I am not sending a large amount of messages to the queues, at most it would be 1 every 2 seconds but generally a lot less frequent than that. The messages are only small too and nowhere near the 4MB limit.</p>
<p>The only thing I have just noticed is the p0000001.mq and r0000067.mq files in C:\WINDOWS\system32\msmq\storage are both 4,096KB however they are that size on other computers also which are not currently experiencing the problem. The problem does not happen to every queue on the computer at once, as I can recreate 1 problem queue on the computer and the other queues still experience the problem.</p>
<p>I am not very experienced with MSMQ so if you post possible things to check can you please explain how to check them or where I can find more details on what you are talking about.</p>
<p>Currently the situation is:</p>
<ul>
<li>ComputerA - 4 queues normal</li>
<li>ComputerB - 2 queues experiencing problem, 1 queue normal</li>
<li>ComputerC - 2 queues experiencing problem</li>
<li>ComputerD - 1 queue normal</li>
<li>ComputerE - 2 queues normal</li>
</ul>
<p>So I have a large number of computers/queues to compare and test against. Thanks in advance for any suggestions/help!</p>
http://stackoverflow.com/questions/1755907/wcf-msmq-time-to-be-received-has-elapsed-dead-letter-queue-issue0WCF / MSMQ "time-to-be-received has elapsed" dead letter queue issueLangdon2009-11-18T13:18:36Z2009-11-23T12:50:51Z
<p>I'm doing testing against some software I've written. The test enqueues messages into MSMQ via WCF at a rate faster than than my software can dequeue and process them. This shouldn't be a problem, since that is MSMQ's intended purpose, but if I enqueue enough messages to where it's taking my software more than 24 hours to process, those messages will get moved to the "<strong>Transactional dead-letter messages</strong>" queue and have their Class set to "<strong>The time-to-be-received has elapsed</strong>".</p>
<p>The only configurable that I can find is on the binding itself:</p>
<pre><code><bindings>
<netMsmqBinding>
<binding timeToLive="7.00:00:00" /> <!-- 7 days -->
...
</code></pre>
<p>I use this binding both when enqueuing and dequeuing and it doesn't seem to do the trick. Setting the value 2 seconds does have an effect, but setting it longer than 1 day, including to its max value (24 days) does not.</p>
<p>Is there another way to lengthen this time-to-be-received window? I can't find anything else to configure (when sending the message or creating the queue).</p>
http://stackoverflow.com/questions/240471/should-i-use-msmq-or-sql-service-broker-for-transactions0Should I use MSMQ or SQL Service Broker for transactions?Ed Schwehm2008-10-27T16:19:43Z2009-11-23T03:12:27Z
<p>Hey Stackoverflow,</p>
<p>I've been asked by my team leader to investigate MSMQ as an option for the new version of our product. We use SQL Service Broker in our current version. I've done my fair share of experimentation and Googling to find which product is better for my needs, but I thought I'd ask the best site I know for programming answers.</p>
<p>Some details:</p>
<ul>
<li>Our client is .NET 1.1 and 2.0 code; this is where the message will be sent from.</li>
<li>The target in a SQL Server 2005 instance. All messages end up being database updates or inserts.</li>
<li>We will send several updates that must be treated as a transaction.</li>
<li>We have to have perfect message recoverability; no messages can be lost. </li>
<li>We have to be asynchronous and able to accept messages even when the target SQL server is down.</li>
<li>Developing our own queuing solution isn't an option; we're a small team. </li>
</ul>
<p>Things I've discovered so far:</p>
<ul>
<li>Both MSMQ and SQL Service Broker can do the job.</li>
<li>It appears that service broker is faster for transactional messages.</li>
<li>Service Broker requires a SQL server running somewhere, whereas MSMQ needs any configured Windows machine running somewhere.</li>
<li>MSMQ appears to be better/faster/easier to set up/run in clusters.</li>
</ul>
<p>Am I missing something? Is there a clear winner here? Any thoughts, experiences, or links would be valued. Thank you!</p>
<p>EDIT: We ended up sticking with service broker because we have a custom DB framework used in some of our client code (we handle transactions better). That code captured SQL for transactions, but not . The client code was also all version 1.1 of .NET, so we'd have to upgrade all the client code. Thanks for your help!</p>
http://stackoverflow.com/questions/1663700/msmq-installation-error-on-2008-server0MSMQ installation error on 2008 Server Mike2009-11-02T21:05:36Z2009-11-23T01:33:45Z
<p>This Windows 2008 SP2</p>
<p>The Error:</p>
<p>Message Queuing: Installation failed
Error: Attempt to install Message Queuing Server failed with error code 0x80070643. Fatal error during installation
The following features were not installed:
Message Queuing Services
Message Queuing Server</p>
<p>Found a msdn blog with the following resolution:</p>
<p>Resolution</p>
<p>To resolve this issue follow the steps listed below:</p>
<ol>
<li>Go to Control panel and click User Accounts</li>
<li>Select User Accounts and click Turn User Account Control on/ Off</li>
<li>Un-check the check box beside User Account Control</li>
<li>Close the User Account Window, reboot the computer and try to install Microsoft Message Queuing (MSMQ) again</li>
</ol>
<p>Note: Be sure to turn User Account Controll back on when the issue is resolved</p>
<p>After doing that and rebooting I still getting the same error when trying to installing MSMQ.</p>
http://stackoverflow.com/questions/1480462/alternatives-to-nservicebus-that-doesnt-use-msmq0Alternatives to NServiceBus that doesn't use MSMQG33kKahuna2009-09-26T05:03:53Z2009-11-22T22:14:31Z
<p>I think the title sums it all .... We have a .NET 2.0 system trying to implement a distributed pub/ sub model. I came across NServiceBus, RhinoBus and MassTransit. Unfortunately, these are MSMQ based. I am tasked to figure out pub/ sub alternatives that uses a different messaging alternatives ... </p>
<p>the only reason for seeking MSMQ alternatives is to overcome the message size restriction. Since our enterprise app messages can potentially get truncated due to per message restriction... </p>
<p>any guidance is much appreciated</p>
http://stackoverflow.com/questions/1308497/why-cant-i-receive-a-message-from-my-remote-public-transactional-queue1Why can't I receive a message from my remote public transactional queue?Dave Nichol2009-08-20T20:05:57Z2009-11-22T16:36:45Z
<p>I'm using C# on Windows Server 2008, and I want to receive a message from a public transactional queue on another machine in the same domain. The error looks like this:</p>
<pre><code>System.Messaging.MessageQueueException: Cannot import the transaction.
at System.Messaging.MessageQueue.ReceiveCurrent(TimeSpan timeout, Int32 action, CursorHandle cursor, MessagePropertyFilter filter, MessageQueueTransaction internalTransaction, MessageQueueTransactionType transactionType)
at System.Messaging.MessageQueue.Receive(TimeSpan timeout, MessageQueueTransactionType transactionType)
at JobManagerLib.JobProcessor.Process(Action waitForNewMessageCallback) in C:\Dev\OtherProjects\POC\WindowsService\JobManagerSample\JobManagerLib\JobProcessor.cs:line 132
</code></pre>
<p>I've tried DTCPing, which succeeds in one direction but fails in the other. Here is the pertinent part of the log:</p>
<pre><code>++++++++++++hosts ++++++++++++
127.0.0.1 localhost
::1 localhost
08-20, 15:47:22.739-->Error(0x424) at clutil.cpp @256
08-20, 15:47:22.739-->-->OpenCluster
08-20, 15:47:22.739-->-->1060(The specified service does not exist as an installed service.)
++++++++++++++++++++++++++++++++++++++++++++++
DTCping 1.9 Report for DEV-MSMQ2
++++++++++++++++++++++++++++++++++++++++++++++
RPC server is ready
++++++++++++Validating Remote Computer Name++++++++++++
08-20, 15:47:26.207-->Start DTC connection test
Name Resolution:
dev-msmq1-->192.168.22.11-->Dev-msmq1
08-20, 15:47:26.222-->Start RPC test (DEV-MSMQ2-->dev-msmq1)
RPC test failed
</code></pre>
<p>Does anybody have any idea why this might be failing? The Windows Firewall has been opened for MSDTC. It's hard to find much info about Windows 2008 and MSMQ.</p>
<p><strong>EDIT</strong>: The queue names are FormatName:DIRECT=OS:dev-msmq1\getmap, and FormatName:DIRECT=OS:dev-msmq1\logevent. They are public, transactional queues, and Everyone has peek/receive permission on them. The pertinent part of my code is as follows:</p>
<pre><code>using (TransactionScope tx = new TransactionScope(TransactionScopeOption.RequiresNew))
{
using (var queue = new MessageQueue(QueueName))
{
queue.Formatter = new XmlMessageFormatter(new string[] { _targetParameterType });
var message = queue.Receive(TimeOut, MessageQueueTransactionType.Automatic);
string messageId = message.Label;
...
}
}
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1763893/how-to-send-a-message-from-server-a-to-server-b-using-msmq0How to send a message from Server A to Server B using MSMQ?Max Schmeling2009-11-19T15:01:06Z2009-11-20T18:16:05Z
<p>How do I setup a message queue that automatically sends all it's messages to another server?</p>
<p>I'm working on a proof of concept for a system that needs to run on multiple servers, writing to local message queues, then have a central service on another server running that reads its local queue to pick up all the messages from the other servers.</p>
<p>From what I've read I believe this is possible, but I'm not seeing how to set it up...</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1278661/how-to-delete-ms-message-queue-from-active-directory-error-a-queue-with-the-sam0How to delete MS Message Queue from Active Directory - Error A queue with the same path name already existsClarence Klopfstein2009-08-14T15:51:50Z2009-11-18T02:06:58Z
<p>I deleted a Public Queue from my local box this morning and then went to recreate the queue. When I go to recreate it I get the message:
Error: A queue with the same path name already exists</p>
<p>From research it appears that the queue gets replicated in the AD and sometimes it doesn't delete.</p>
<p>So now the AD admin has to delete this for me, but they don't seem to understand.</p>
<p>So how can I get past this error?</p>
<p>I am not sure if this is the best site for this question, but I'm a programmer... :-)</p>
http://stackoverflow.com/questions/1708415/connecting-to-a-remote-queue-via-the-hosts-file0Connecting to a remote queue via the hosts fileJuan Manuel2009-11-10T14:36:39Z2009-11-17T13:37:42Z
<p>I have different environments for my application (Dev -> Test -> Prod), and I'm using MSMQ.</p>
<p>I also have the name of the queues (they are remote queues) I use via config files, in the following format:</p>
<pre><code>FormatName:Direct=SERVER_NAME\Private$\MY_QUEUE
</code></pre>
<p>My problem is that SERVER_NAME is different in the different environments, and I'd like to delegate that problem to the server (ie: for databases I have aliases with the same name in all 3 servers, and they each point to the actual db server)</p>
<p>I tried adding the queue server to the hosts file, but it failed with the following error:</p>
<blockquote>
<p>The queue does not exist or you do not have sufficient permissions to perform the operation.</p>
</blockquote>
<p>I tried <code>FormatName:Direct</code>, <code>FormatName:OS</code>, and <code>FormatName:TCP</code></p>
<p>Any help (workaround, new ideas, how to make that work) would be highly appreciated.</p>
<p><em>The objective is to have a single config file that would work in all environments.</em></p>
http://stackoverflow.com/questions/1728430/getting-the-nservicebus-distributor-sample-to-work0Getting the NServiceBus Distributor Sample To WorkJochen2009-11-13T10:36:23Z2009-11-15T11:24:36Z
<p>Hi,</p>
<p>I'm trying to use the Distributor in the NServiceBus FullDuplex sample but I can't get it working. I've been following the this guide <a href="http://www.colourcoding.net/Blog/archive/2009/04/22/getting-the-nservicebus-distributor-working.aspx" rel="nofollow">Getting the NServiceBus Distributor Working</a>, but it doesn't work.</p>
<p>There are two problems, one the distributordatabus isn't being created I think the Distributor should create this one. This is the error I get when starting the Distributor, I think it has something to do would it.</p>
<pre><code>2009-11-13 11:27:15,811 [7] ERROR NServiceBus.Distributor.EndpointRunner [(null)
] <(null)> - Problem occurred when starting the endpoint.
System.InvalidOperationException: No message serializer has been configured.
bij NServiceBus.Unicast.Transport.Msmq.MsmqTransport.CheckConfiguration() in
d:\Code\Other\NServiceBus\trunk\src\impl\unicast\NServiceBus.Unicast.Msmq\MsmqTr
ansport.cs:regel 229
</code></pre>
<p>The second problem is when I start the client, I doesn't start because it can't find the distributordatabus. This is the exception.</p>
<blockquote>
<p>Exception when starting endpoint,
error has been logged. Reason: The
destination queue 'distributordatabus'
could not be found. You may have
misconfigured the destination for this
kind of message
(NServiceBus.Unicast.Transport.CompletionMessage)
in the MessageEndpointMappings of the
UnicastBusConfig section in your
configuration file.It may also be the
case that the given queue just hasn't
been created yet, or has been deleted.</p>
</blockquote>
<p>This is something I don't understand. Why does the client need the remote queue to exist?</p>
<p>One more thing, I'm using the trunk version.</p>
<p>Regards,</p>
<p>Jochen</p>
http://stackoverflow.com/questions/1732515/msmq-what-can-cause-a-insufficient-resources-to-perform-operation-error-when-r1MSMQ: What can cause a "Insufficient resources to perform operation" error when receiving from a queue?Grauenwolf2009-11-13T23:19:27Z2009-11-13T23:24:01Z
<p>MSMQ: What can cause a "Insufficient resources to perform operation" error when receiving from a queue?</p>
<p>At the time the queue only held 2,000 messages with each message being about 5KB in size.</p>
http://stackoverflow.com/questions/1198182/msmq-and-polling-to-receive-messages0MSMQ and polling to receive messages?Pure.Krome2009-07-29T05:27:48Z2009-11-13T20:54:17Z
<p>Hi folks,</p>
<p>I've got a windows <em>service</em> that does some image conversion. It works by firing off when any file (in a particular folder) is renamed (ie. rename file watcher). Works great until I have a massive amount of images dumped (and renamed) in that folder. CPU redlines, etc..</p>
<p>So, I was going to change my code to use <strong>MSMQ</strong> to queue all the files that need to be converted. Fine. Everytime the file is renamed and the file watcher fires, i then add a new message to the queue. Kewl.</p>
<p>Problem is this -> <strong>how do i grab one message at a time from the queue?</strong></p>
<p><strike>Do I need to make a timer object that polls the queue every xxx seconds? Or is there a way to constantly keep peeking the first item in the queue. Once a message exists, extract it, process it, then continue (which .. means, keep peeking until the world blows up).</strike></p>
<p>I've wondered if i just need to put a while loop around the Receive method. Pseduo code is below (in Edit #2)...</p>
<p>Anyone have any experience with this and have some suggestions?</p>
<p>Thanks kindly!</p>
<h3>EDIT:</h3>
<p>If WCF is the way to go, can someone provide some sample code, etc instead?</p>
<h3>EDIT 2:</h3>
<p>Here's some pseudo code i was thinking off....</p>
<pre><code>// Windows service start method.
protected override void OnStart(string[] args)
{
// some initialisation stuf...
// Start polling the queue.
StartPollingMSMQ();
// ....
}
private static void StartPollingMSMQ()
{
// NOTE: This code should check if the queue exists, instead of just assuming it does.
// Left out for berevity.
MessageQueue messageQueue = new MessageQueue(".\\Foo");
while (true)
{
// This blocks/hangs here until a message is received.
Message message = messageQueue.Receive(new TimeSpan(0, 0, 1));
// Woot! we have something.. now process it...
DoStuffWithMessage(message);
// Now repeat for eva and eva and boomski...
}
}
</code></pre>
http://stackoverflow.com/questions/1728679/msmq-messagequeue-intermittenly-returning-invalid-handle-error-using-receivebyid0MSMQ: MessageQueue intermittenly returning invalid handle error using ReceiveById or Recieve with a cursorringo2009-11-13T11:31:16Z2009-11-13T11:31:16Z
<p>I have a transactional message queue on Server 2003. It receives messages from several remote machines. Each day, an executable runs which moves those messages from one queue to another on the same machine, however, the executable is processing several hundred messages and then throws an "Invalid Handle was passed to the function" error. </p>
<p>The original code went something like this.(pseudo code) </p>
<pre><code>msgcount = GetMessageCount()
count = 1
msgEnumerator = queue.GetMessageEnumerator2
while(msgEnumerator.moveNext())
{
if count> msgcount
break;
trans = new transaction
try
{
message = queue.ReceiveById(msgEnumerator.ID, trans)
otherQueue.send(message)
}
catch
{
trans.abort
}
finally
{
count++
}
}
</code></pre>
<p>The error is thrown inside ReceiveById when GetCurrent() is called. I've tried altering the receive to just use Receive(timeout,cursor,transaction), but the same thing happened. </p>
<p>Thanks for looking </p>
http://stackoverflow.com/questions/1715223/msmq-and-active-directory-integration0MSMQ and Active Directory IntegrationJim B2009-11-11T13:39:58Z2009-11-11T22:54:56Z
<p>Hi Everyone,</p>
<p>I've got 2 applications that utilizes MSMQ to pass information between 2 servers.</p>
<p>One posts new information hourly, and runs without issue.</p>
<p>The other app runs once nightly, and seems to be intermittently failing with the following error message: "A connection with Active Directory cannot be established. Verify that there are sufficient permissions to perform this operation." Re-running this task manually completes with no issue.</p>
<p>When we first installed MSMQ on our servers, we took the default setup, which resulted in Active Directory Integration being installed.</p>
<p>I've read a few posts that address this issue; and they recommend that I uninstall this component, as well as add a registry key to disable this as well.</p>
<p><a href="http://www.devx.com/enterprise/Article/22314/0/page/1" rel="nofollow">Nine Tips to Enterprise-proof MSMQ</a> was a well written article that gave me a lot of info.</p>
<p>My question is whether there are any additional steps I would need to take if I was to uninstall this? </p>
<p>Is there anything that this component does that I'm not aware of? </p>
<p>My consumer queue paths are formatted like "DIRECT=TCP:XXX.XXX.X.XXX\UploadQ". Would I need to modify these?</p>
<p>Thanks again for all the help.</p>
<p>~Jim</p>
http://stackoverflow.com/questions/1704029/permissions-error-accessing-nservicebus-msmq-from-mvc-net0Permissions error accessing NServiceBus MSMQ from MVC .Net Adam2009-11-09T21:38:25Z2009-11-11T20:25:21Z
<p>I have written a mvc that uses nservicebus to publish messages. This works fine under Cassini.</p>
<p>When trying to use IIS, I receive an error message when I call Create() to create the Bus.</p>
<p>Access to Message Queuing system is denied.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.</p>
<p>Exception Details: System.Messaging.MessageQueueException: Access to Message Queuing system is denied.</p>
<p>I have set the anonymous access user on the IIS virtual directory to be my own domain account, which is a member of the administrators group on the local machine. I have granted this same user full permissions on the queue, as well as NETWORK SERVICE and ASPNET.</p>
<p>Any help with this problem will be greatly appreciated!</p>
http://stackoverflow.com/questions/82099/wcf-msmq-how-do-i-handle-message-failure5WCF MSMQ - How do I handle message failureWebDude2008-09-17T11:15:21Z2009-11-11T16:26:29Z
<p>I have create a WCF service and am utilising netMsmqBinding binding.</p>
<p>This is a simple service that passes a Dto to my service method and does not expect a response. The message is placed in an MSMQ, and once picked up inserted into a database.</p>
<p>What is the best method to make sure no data is being lost.</p>
<p>I have tried the 2 following methods:</p>
<p>1) Throw an exception</p>
<p>This places the message in a dead letter queue for manual perusal. I can process this when my strvice starts</p>
<p>2) set the receiveRetryCount="3" on the binding</p>
<p>After 3 tries - which happen instantanously, this seems to leave the message in queue, but fault my service. Restarting my service repeats this process.</p>
<p>Ideally I would like to do the follow:</p>
<p>Try process the message
If this fails, wait 5 minutes for that message and try again.
If that process fails 3 times, move the message to a dead letter queue.
Restarting the service will push all messages from the dead letter queue back into the queue so that it can be processed.</p>
<p>Can I achieve this? If so how?
Can you point me to any good articles on how best to utilize WCF and MSMQ for my given sceneria.</p>
<p>Any help would be much appreciated. Thanks!</p>
<p><strong>Some additional information</strong></p>
<p>I am using MSMQ 3.0 on Windows XP and Windows Server 2003.
Unfortunately I can't use the built in poison message support targeted at MSMQ 4.0 and Vista/2008</p>
http://stackoverflow.com/questions/1507104/windows-process-activation-service-was-installed-but-netmsmqactivator-is-missin0Windows Process Activation Service (WAS) installed but NetMsmqActivator is missingBurnWithLife2009-10-01T23:53:17Z2009-11-10T17:05:31Z
<p>Windows Process Activation Service is installed under features on my Windows 2008 server running IIS7. Should i be able to see the NetMsmqActivator (Net.Msmq Listener Adapter) in the services list? I don't see it there. My messages are sitting in the queue unprocessed so i went to see if the NetMsmqActivator is running as its supposed to be, but i can't find it. Any ideas?</p>
http://stackoverflow.com/questions/1699814/wcf-client-certificare-not-valid0WCF client certificare not validSazug2009-11-09T08:47:19Z2009-11-09T20:47:05Z
<p>I try to send a message to MSMQ using WCF. I want to use Transport security and sign messages. However, when I set clientcertificate credentials and try to send message, an error is being thrown: "An error occurred while sending to the queue: The user certificate is invalid. (-1072824276, 0xc00e002c)". Certificate is stored in LocalMachine\My location and has read only access set for ASPNET process.</p>
http://stackoverflow.com/questions/1627654/how-to-mock-msmq-messagequeue3How-To Mock MSMQ MessageQueueYoann. B2009-10-26T22:16:51Z2009-11-08T13:26:49Z
<p>Hi,</p>
<p>I want to Unit Test my application which use MSMQ but i found no way in order to Mock MessageQueue objects.</p>
<pre><code> var queuePath = @".\Private$\MyQueue";
MessageQueue queue = null;
if (MessageQueue.Exists(queuePath))
{
queue = new MessageQueue(queuePath);
}
else
{
queue = MessageQueue.Create(queuePath);
}
</code></pre>
<p>I'm using Moq with xUnit.</p>
http://stackoverflow.com/questions/279313/resend-to-msmq-after-exception0Resend to MSMQ after exceptionGuy2008-11-10T21:53:50Z2009-11-06T23:06:27Z
<p>I'm trying to put a Message back into an MSMQ when an exception is thrown. The following code appears to work but the Message is not put back in the queue?</p>
<pre><code>Message msg = null;
try
{
MessageQueue MQueue = new MessageQueue(txtMsgQPath.Text);
msg = MQueue.ReceiveById(txtQItemToRead.Text);
lblMsgRead.Text = msg.Body.ToString(); // This line throws exception
}
catch (Exception ex)
{
lblMsgRead.Text = ex.Message;
if (msg != null)
{
MessageQueue MQ = new MessageQueue(txtMsgQPath.Text);
MQ.Send(msg);
}
}
</code></pre>
http://stackoverflow.com/questions/1687979/why-do-i-have-to-re-install-msmq-when-i-come-off-and-back-on-to-the-office-networ1Why do I have to re-install MSMQ when I come off and back on to the office network?AndyMoose2009-11-06T14:31:13Z2009-11-06T14:31:13Z
<p>Hi</p>
<p>I've got a really frustrating problem with MSMQ constantly refusing to work even though it's installed and started.</p>
<p>I have MSMQ installed on my Vista Business laptop (MSMQ-Container;MSMQ-Server;MSMQ-Triggers;MSMQ-DCOMProxy) and this laptop is joined to the company domain. Registry shows that it's installed under Workgroup mode which is fine by me as I only want to use direct connections to private queues (using a full FormatName (TCP based)) and could care less about AD integration.</p>
<p>When plugged into the office network all is well.</p>
<p>When I unplug and go home to work, MSMQ appears to be running (the service still runs) but all my attempts to connect to a queue fail with a "Service is Unavailable" exception. Tried with my .NET app, COM, QueueExplorer app and all say the same. Also the MSMQ stuff in Computer Management is gone.</p>
<p>The only way to get it back and working at home is to uninstall everything, and re-install it.</p>
<p>Then when I get to the office, I have to uninstall MSMQ and re-install for it to work when plugged into the office network!</p>
<p>Anyone got any ideas? I had a thought that maybe this has something to do with NICs and IP addresses changing etc? MSMQ seems to be really flakey at the moment.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1679339/msmq-works-except-with-cursoring-across-the-queue1MSMQ works - except with cursoring across the queuepattermeister2009-11-05T09:24:42Z2009-11-05T09:24:42Z
<p>We have a private MSMQ on a remote machine running Windows Server 2008 R2. It's not part of the same domain, but the queue permissions are set to allow Full Control to the Anonymous Logon user. Additionally, we've permitted unauthenticated RPC calls to be made. We're using normal</p>
<p>From other machines, we can send messages to it, and we can consume messages too - this works fine. However, as soon as we attempt to call <a href="http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue.createcursor.aspx" rel="nofollow">CreateCursor</a> on the queue, we get a MessageQueueException with the MessageQueueErrorCode of AccessDenied.</p>
<p>We're connecting like this: </p>
<blockquote>
<p>FormatName:DIRECT=OS:MACHINENAME\private$\QUEUENAME</p>
</blockquote>
<p>Is it not possible to cursor over a queue from a non local machine? Or is there a security setting we've missed? </p>
http://stackoverflow.com/questions/1668795/out-of-order-messages-possible-with-transactional-queues-in-msmq0Out of order messages possible with transactional queues in MSMQ?andrew2009-11-03T17:12:03Z2009-11-04T17:37:55Z
<p>I'm new to messaging and a little unclear as to whether it is possible for MSMQ to deliver out-of-order messages for transactional queues. I suppose it must be because if a message is not processed correctly (and since we will be using multiple "competing consumers"), then other consumers could continue to process messages while the failed message is placed back on queue. Just can't seem to find a black-and-white answer anywhere on this. </p>
<p>Cheers</p>
http://stackoverflow.com/questions/1674820/how-do-i-use-msmqintegrationbinding-with-a-non-transactional-queue0How do I use MsmqIntegrationBinding with a non-transactional queue?Grauenwolf2009-11-04T16:06:07Z2009-11-04T16:06:07Z
<p>This is my service contract:</p>
<pre><code><ServiceContract> _
<ServiceKnownType(GetType(String))> _
Public Interface ISecurityMasterChanged
<OperationContract(IsOneWay:=True, Action:="*")> _
Sub ValidateCusipInMessage(ByVal message As MsmqMessage(Of String))
End Interface
</code></pre>
<p>This is my class</p>
<pre><code>Public Class SecurityValidator
Implements ISecurityMasterChanged
<OperationBehavior(TransactionAutoComplete:=False, TransactionScopeRequired:=False)> _
<ServiceKnownType(GetType(String))> _
Public Sub ValidateCusipInMessage(ByVal message As MsmqIntegration.MsmqMessage(Of String)) Implements ISecurityMasterChanged.ValidateCusipInMessage
'...
End Sub
</code></pre>
<p>When I try to open the port with this code I get an error</p>
<pre><code> m_ServiceHostQueue = New ServiceHost(Me)
m_ServiceHostQueue.AddServiceEndpoint(GetType(ISecurityMasterChanged), New MsmqIntegrationBinding With {.ExactlyOnce = False}, m_Config("SMChanged Queue").ToString)
m_ServiceHostQueue.Open()
</code></pre>
<p>System.InvalidOperationException occurred
Message="The operation 'ValidateCusipInMessage' on contract 'ISecurityMasterChanged' is configured with TransactionAutoComplete set to true and with TransactionScopeRequired set to false. TransactionAutoComplete requires that TransactionScopeRequired is set to true."
Source="System.ServiceModel"</p>
<p>This doesn't make sense to me because, as you can see, TransactionAutoComplete is not set to true. </p>
http://stackoverflow.com/questions/1670540/msmq-what-is-the-best-way-to-read-a-queue-in-a-non-blocking-fashion0MSMQ: What is the best way to read a queue in a non-blocking fashion?Grauenwolf2009-11-03T22:25:55Z2009-11-04T14:21:29Z
<p>If a queue is empty and you don't want to block for too long, you risk getting a System.Messaging.MessageQueueException. </p>
<p>How would you tell the difference between a timeout on waiting for a message and a real error?</p>
http://stackoverflow.com/questions/1670117/msmq-is-there-a-way-to-set-a-do-not-deliver-before-value0MSMQ: Is there a way to set a "do not deliver before" value?Grauenwolf2009-11-03T21:03:15Z2009-11-03T21:16:17Z
<p>Is there a way to indicate a MSMQ message should not be delivered before a certain time?</p>
<p>Essentially I want to be able to put messages back in the queue to be reprocessed in the future, say ten minutes from now. I would do this when the message processing has had some kind of error that I expect to be fixed in the near future.</p>
http://stackoverflow.com/questions/506022/java-and-msmq2Java and MSMQAndy White2009-02-03T04:35:43Z2009-10-31T18:33:17Z
<p>Hi everyone,
I was curious if anyone had any suggestions on a Java library that provides access to MSMQ? I've downloaded the trial of the J-Integra Java-COM library and have built and run their MSMQ example app, but I was curious if there were any good (free :)) alternatives. I've run across a few JNI implementations like jMSMQ and a few others, but I'd rather avoid JNI if possible.</p>
<p>We've also investigated some .NET<->JMS interop solutions like JNBridge (with ActiveMQ). I think our company has decided to centralize our queueing in MSMQ however, so that would be our ideal solution.</p>
<p>We are hoping to use WCF (netMsmq or msmqIntegration) on the .NET side. I'm a little concerned about how the java side will deal with the WCF messages (binary encoding), but there should be options there (customBinding with text encoding and MSMQ transport?), so I'm not too worried about that. Mostly worried about getting access to MSMQ in Java.</p>
<p>Our other option is to just put a thin web-service layer at the input end of each queue, and achieve interop that way. Performance is a little bit of a concern there, however.</p>
<p>Any suggestions? Thanks a lot for anyone's time.</p>