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

NServiceBus Distributor clustering configuration

Pardon me for posting here instead of serverfault, but NServiceBus seems like the kind of thing that really only developers understand. The problem is that we have a new app that uses NServiceBus and we are eager to show off the new bells and…
CrazyDart
  • 3,803
  • 2
  • 23
  • 29
0
votes
1 answer

Retrieving a Struct from MSMQ and convert it back to struct format in C++

I have pushed a custom struct into MSMQ using MQSendMessage API and also I am successfully able to retrieve the message from the queue using MQReceiveMessage API. But the information is available in buffer of type UCHAR *(unsigned char *). I want…
dev001
  • 1
  • 1
0
votes
1 answer

Access internal classes for inherited type

Looking to extend the BeginReceive method, and the event handler for MessageQueue.ReceiveCompleted to pass along by REFERENCE a TCPClient object. As is, I can pass it in as an object, but it will be by VALUE, and therefore will be a copy of the…
David P
  • 2,027
  • 3
  • 15
  • 27
0
votes
1 answer

MSMQ MessageQueue.BeginReceive(TimeSpan, Object)

I would like to pass a custom parameter to the ReceiveCompleted event handler via the ReceiveCompletedEventArgs object. I don't want a timeout, but it seems as though there is no constructor (other than BeginReceive()) that doesn't expect a timeout…
David P
  • 2,027
  • 3
  • 15
  • 27
0
votes
1 answer

Microsoft Message Queue Missing Messages

I am using C# and .Net Framework 1.1 (yes its old but I inherited this stuff and can't convert up). I places messages on a transactional queue but it does not get on the queue about 50% of the time. Running workgroup and Windows/XP Professional…
Roy Cadenhead
0
votes
1 answer

Multicast MSMQ inside Docker Windows Container

We have a legacy windows project, that we would like to containerize. This uses MSMQ multicasting (part of Telerik's obsolete ORM). Inside my Windows Container, If I attempt Enable-WindowsOptionalFeature -Oneline -FeatureName MSMQ-Multicast…
user340535
  • 663
  • 2
  • 6
  • 15
0
votes
1 answer

What would be the best method for interconnecting 2 .NET services on a Windows machine?

I am looking for some suggestions on what would be the best / effective method of exchanging information between 2 networked Windows servers... We have a search engine for a huge pictures archive and a website that uses a Lucene index, which is…
Denis
  • 4,718
  • 5
  • 18
  • 20
0
votes
0 answers

Update Permissions on existing MSMQueue via powershell.

I've searched many places and cannot find a way to modify permissions on an MSMQueue that is already existing. Typically permissions are set during the creation of the queue. It did not happen in this case. Deleting the queue and reinstalling is…
freakostudent
  • 105
  • 1
  • 2
  • 9
0
votes
2 answers

Service Fabric - Local Cluster - Queuing

I am in a situation where I can use Service Fabric (locally) but cannot leverage Azure Service Bus (or anything "cloud"). What would be the corollary for queuing/pub-sub? Service Fabric is allowed since it is able to run in a local container, and is…
Will Comeaux
  • 325
  • 1
  • 14
0
votes
1 answer

Is the following private message queue name valid?

OS:namePrefix.nameSuffix\private$\queueName Will having a . (dot) present in the machine name have an issue when specifying the queue name?
Ajay
  • 465
  • 1
  • 9
  • 22
0
votes
1 answer

How MSMQ works with Hangfire. Can anyone explain the flow?

Can anyone explain how will message be received by MSMQ queue and how hangfire will process that request?
akhil
  • 13
  • 6
0
votes
1 answer

Send access rights to remote private queue in another domain

How do I assign send access rights to a remote private queue for a machine which is on another domain?
Ajay
  • 465
  • 1
  • 9
  • 22
0
votes
1 answer

WCF Msmq with "Message" security, can't receive messages from the queue

I have a WCF router sending messages to a private msmq using netMsmqBinding. I have another WCF service listening for messages on that queue. When the security mode is set to "None" i am able to send messages to the queue and also receive messages…
user633609
  • 71
  • 1
  • 5
0
votes
2 answers

How to set message label using Weborb(Producer) and MSMQ

I`m adding a message in MSMQ by my flex program using this code: producer = new Producer(); producer.destination = "VendingMachineBack"; var m:AsyncMessage = new AsyncMessage("",{'MSMQLabel':"VS-GetSaleTypes"}) ; …
Arthur Neves
  • 11,840
  • 8
  • 60
  • 73
0
votes
1 answer

How does the MSMQ-Exchange Connector handle attachments?

So here is my system: Users can email a document to a specified email address and that document will be automatically added into our system. Currently this is process by a windows service that polls the Exchange server and processes messages…
Dugan
  • 908
  • 2
  • 13
  • 30