Questions tagged [msmq]

Microsoft Message Queuing (MSMQ) is a message queuing implementation developed by Microsoft and deployed as part of its Windows platform since 1996. MSMQ is included on most versions of Windows but it's not installed by default.

Microsoft Message Queuing (MSMQ) is a message queuing implementation developed by Microsoft and deployed as part of its Windows platform since 1996. MSMQ is included on most versions of Windows but it's not installed by default.

1964 questions
0
votes
1 answer

Remote MSMQ FormatName Error

I created a private queue on a development server that is transactional and am trying to push a message to it via C#: using (var scope = new TransactionScope(TransactionScopeOption.Required)) { //AppSetting has:…
Scott Salyer
  • 2,165
  • 7
  • 45
  • 82
0
votes
0 answers

MessageEnumerator.MoveNext() error from remote server - C#

I have created one console app where i implemented search message from MSMQ functionality for specific criteria (Label/ Body / Priority). MessageQueue msgQ = new MessageQueue("FormatName:Direct=OS:(MachineName A)\private$\TestQueue") msgQ.Label =…
watraplion
  • 287
  • 4
  • 17
0
votes
1 answer

Getting an access denied error when trying to pause/resume an outgoing message queue

Imports System.Messaging Imports System.Collections Imports MSMQ Imports System.IO Imports System Imports System.Messaging.MessageQueue Imports System.Runtime.InteropServices Public Class PauseOutMessages 'Declare everything to be in the scope…
R.Steele
  • 11
  • 5
0
votes
0 answers

Connecting to MSMQ from remote machine

I'm trying to connect to MSMQ running on an AWS EC2 instance using the following connection : MessageQueue = new MessageQueue("FormatName:Direct=TCP:xx.xxx.xx.xxx\\private$\\TestQueue"); I've enabled all the appropriate traffic with the AWS…
ddrjca
  • 472
  • 2
  • 15
0
votes
1 answer

MSMQ - No Authentication

We are looking at setting up MSMQ but in our environment users aren't guaranteed to have have Active Directory and using certificates would be an extra process we would not like to have. So I started looking into using a private queue without the…
Andrew
  • 691
  • 6
  • 17
0
votes
1 answer

MaxConcurrentListeners and Remote Transactional Reads from MSMQ

Could it be that MaxConcurrentListereners on a DistributedTxMessageListenerContainer isn't much of use? I have the impression that only one thread at a time can handle a message from the queue. Maybe it's logical since the message will only be…
Lieven Cardoen
  • 25,140
  • 52
  • 153
  • 244
0
votes
1 answer

Unable to send the MSMQ messages through public queue

I am able to send the messages to the MSMQ through private queue. C# var queue = new MessageQueue(@"FormatName:DIRECT=OS:machinename\myqueue"); queue.Send(myMessage, MessageQueueTransactionType.Single); But when I am trying to send the MSMQ…
Pearl
  • 8,373
  • 8
  • 40
  • 59
0
votes
1 answer

Powershell The term 'Get-MsmqQueue' is not recognized as the name of a cmdlet in Windows Server 2008 R2 SP1

I'm trying to use the command Get-MsmqQueue in Windows Server 2008 R2 SP1 (x64), but I'm getting the following error: Get-MsmqQueue : The term 'Get-MsmqQueue' is not recognized as the name of a cmdlet, function, script file, or operable program.…
Murilo Faria
  • 43
  • 1
  • 7
0
votes
0 answers

Is MSMQ clustering required for sending only?

When sending to a remote MSMQ, from a clustered server is it necessary to cluster MSMQ on the sending servers, or do we just need to install the components locally on each node? We are attempting to send from within MS SQL, using a CLR Stored…
Dan Harris
  • 1,336
  • 1
  • 21
  • 44
0
votes
1 answer

Sending Castle Proxy from NHibernate with MassTransit over MSMQ causes StackOverflowException

I'm trying to send a message with MassTransit over MSMQ. The message contains two properties which are types obtained from an NHibernate query and contain Castle Proxies (for lazy loading). If I send the message (using bus.Endpoint.Send(msg)) with…
Michael Shimmins
  • 19,961
  • 7
  • 57
  • 90
0
votes
1 answer

Classic ASP page cannot send message to remote private queue on windows 2008 r2

I have IIS7.5 server (Windows 2008 R2) with a classic ASP page that sends a message to private queue that is located on another Windows 2008 R2 server. The page refers to queue by its formatname: DIRECT=OS:servername\private$\queuename. The message…
Gen
  • 3
  • 3
0
votes
1 answer

Queue Path for MSMQ using C#

I cannot seem to figure out how to format the queue path. I have never used MSMQ before. I set it up, create a private queue called test, and want to try sending a message. I am using Visual Studio, ASP.NET, webforms, C#. protected void…
0
votes
1 answer

asp.net msmq send request shows success but receives message late on msmq

I am sending data to msmq from asp .net application, and it sends success but it takes time to receive the message at destination msmq (packet receives but it takes time around 5/10 min not always but sometimes) Here is code that i am using to send…
Akshay
  • 121
  • 1
  • 1
  • 10
0
votes
0 answers

MSMQ poison message time in subqueue

I wanna know for how long do poison messages live in the poison subqueue. I have been reading documentation and it does not seem to be clear... Thanks in advance
parayac
  • 3
  • 2
0
votes
1 answer

msmq\storage keeps filling up with multicast queue

I want to create a simple publish subscribe setup where my publisher keeps broadcasting messages whether there are 0,1 or more subscribers and subscribers came and go when they need and read the latest messages. I don't want older messages to be…
1 2 3
99
100