msmq Questions

0

I am trying to find how to make performance monitoring available over a cluster, and I can't find seem to find anything while searching other than how to access performance counters for a cluster. ...
Mercantilism asked 25/11, 2014 at 17:30

1

Solved

I'm a Java programmer who has been asked to make some changes to C# applications. I've been working with C# for a week now, and I've finally hit a point where looking at the documentation isn't hel...
Pursuit asked 10/11, 2014 at 16:48

3

Solved

I've developed a WCF Service which is hosted as a Windows Service and exposes a MSMQ endpoint. I have the client app on SERVER1, and the MSMQ and WCF Service on SERVER2. When the SERVER1/ClientAp...
Tophole asked 2/9, 2013 at 16:5

3

Solved

Is it possible to purge a msmq queue from a bat file? Essentially I want to make a bat file or at least something quick and easy so that an untrained employee can click and fix without knowing any...
Regen asked 3/8, 2012 at 9:57

2

Solved

In the distributed message transaction world, am trying to understand the different parts that are involved in developing distributed systems. From what I understand you can design messaging system...

1

In MSMQ on .NET, I'm using a MessageEnumerator to look through all the messages in the queue. I want to remove messages that meet a certain condition. When I call MoveNext to step through the queu...
Symmetrical asked 18/2, 2014 at 19:58

4

I have an exsiting application that works fine on a windows 2003 server. I having been moving it to windows 2008r2 and when the application trys to access the queue it gets the below error? The Ind...
Dolomite asked 28/6, 2011 at 19:12

3

Solved

I am trying to configure my message endpoint mapping in my NServiceBus configuration by sending messages from different namespaces to different endpoints. As such, I have configured the following ...
Euryale asked 1/4, 2010 at 16:33

7

Solved

I need to work with MSMQ (Microsoft Message Queuing). What is it, what is it for, how does it work? How is it different from web services?
Skillful asked 30/12, 2008 at 12:3

0

I run .exe through windows service which reads the message from Private Queue. The service is all good and stable but at times the service stops (it actually does not stop, but it is not processing...
Valeryvalerye asked 3/7, 2014 at 9:54

0

I am experiencing an issue with a MSMQ receive location setup in BizTalk. I am looking for ideas on resolution. Your help in this regard is much appreciated! Here is the setup: BizTalk Server – W...
Hundley asked 30/6, 2014 at 16:32

3

Solved

I'm currently doing it like this: MessageQueue queue = new MessageQueue(".\Private$\myqueue"); MessageEnumerator messageEnumerator = queue.GetMessageEnumerator2(); int i = 0; while (messageE...
Fungicide asked 12/4, 2010 at 0:0

11

Solved

An existing process changes the status field of a booking record in a table, in response to user input. I have another process to write, that will run asynchronously for records with a particular ...
Dall asked 19/12, 2008 at 3:48

4

Whats the best way to get all the messages currently on a queue to process? We have a queue with a large number of very small messages, what I would like to do is read all the current messages off...
Gammadion asked 4/8, 2009 at 16:55

3

Strange one. We have a multi-threaded app which pulls messages off a MSMQ Queue and then subsequently performs actions based on the messages. All of this is done using DTC. Sometimes, for some rea...
Lempira asked 26/1, 2009 at 16:4

3

Solved

I'm sending a message to a private queue via c# : MessageQueue msgQ = new MessageQueue(@".\private$\aaa"); msgQ.Formatter = new XmlMessageFormatter(new[] { typeof (String) }); msgQ.Send(m...
Shiekh asked 10/4, 2014 at 10:52

3

Just 20 message per second! That is all I got! Here is the code that peeks 50 message from queue and receives them in parallel using ReceiveById. Total number of messages in queue is 500. I have te...
Cosimo asked 5/1, 2013 at 0:10

1

Solved

I have been doing r&d for the scope of SQL Server Service Broker to replace current messaging solution MSMQ. I want to know disadvantages of SQL Server Service Broker in contrast to MSMQ ...
Fuse asked 5/2, 2014 at 6:43

2

Solved

I have written a sample application to write to a public and private queues that are on dev server. I don't have the message queue installed on my local machine. I am getting error: message queui...
Miramirabeau asked 21/3, 2012 at 3:5

3

Solved

I'm moving an application from one server to another and the new server returns the 'famous' - "Insufficient resources to perform operation." message when the code attempts to send multiple message...
Refreshing asked 16/3, 2011 at 10:3

1

I am getting the error "the protocol 'net.msmq' is not supported" when I try and add a service reference to my WCF service in visual studio. I have successfully ran appcmd set site "Defa...
Goldthread asked 14/3, 2011 at 6:22

1

My application's bottleneck has become sending and receiving messages over MSMQ with MassTransit. The send and receive are both happening within the same application, but there are often too many m...
Rufescent asked 18/12, 2013 at 16:16

4

Solved

I know that when I try to create new MessageQueue, system throws InvalidOperationException if the Message Queuing is not enabled. But how to know programmatically whether Message Queueing is enab...
Butterfish asked 20/5, 2011 at 7:58

5

I have a transactional MSMQ queue setup on server THOR. I am able to post messages to that queue from a workstation with the following code: var queue = new MessageQueue("FormatName:Direct=OS:thor...
React asked 5/10, 2010 at 15:55

2

I am trying to find where lies the bottleneck of a C# server application which underutilize CPU. I think this may be due to poor disk I/O performance and has nothing to do with the application itse...
Deserted asked 2/11, 2013 at 23:32

© 2022 - 2024 — McMap. All rights reserved.