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

How to Send and Receive a LIST via MSMQ / C#

How can I send and receive a LIST object via MSMQ in C#? Hard to find suggestions. Detail examples greatly appreciated.
0
votes
1 answer

Setpermission on clustered private MSMQ queue

I am trying to allocate additional permissions to a private clustered MSMQ queue. I found How to set permissions on MSMQ Cluster queues? which is the same problem but I can't get it to work. The key from that article is to set the environment…
housten
  • 126
  • 9
0
votes
1 answer

How can I use MSMQ in Azure Service Fabric

I have implemented a Proof of Concept in Azure Service fabric that uses Azure Service Bus as a message queue. I'm using nServiceBus within the application to send and respond to messages which makes it very easy to change from one queuing technology…
Hoots
  • 1,876
  • 14
  • 23
0
votes
1 answer

MSMQ for those application which are deployed on different machines

I am wondering how can i use msmq with different application which are deployed on different machine. MSMQ will work perfectly for those application which are deployed on the same server. Server 1 Webapplicaiton 1 Webapplication 2 Both…
John Doe
  • 141
  • 1
  • 2
  • 10
0
votes
0 answers

How would I be able to retrieve an MSMQ message after a specific time has passed?

I have an MSMQ which would be used almost as some form of "Schedule queue" for sending out tweets at specific time (Think of it as setting a time to send a specific tweet out). I have sort of ran into a brick wall in how I would retrieve items from…
Sam Bunting
  • 845
  • 1
  • 15
  • 36
0
votes
0 answers

MSMQ not working on Windows 8 machine

I am trying to use MSMQs as below string _QueueName = "\\MyServer\MyQueue"; if ( MessageQueue.Exists(_QueueName) ) // Error here { _Queue = new MessageQueue(@"FormatName:DIRECT=OS:" + _QueueName); _Queue.Formatter = new…
user2837961
  • 1,505
  • 3
  • 27
  • 67
0
votes
1 answer

MSMQ connection is not established

Application is using MSMQ services. But some remote workstations cannot have MSMQ TCP connection established properly with server. execute netstat -ano|findstr (msmq port), there is not TCP connection either in SYN-SENT or ESTABLISHED state from…
FunctionBlock
  • 13
  • 1
  • 6
0
votes
1 answer

What's the difference between Msmq vs .Net Remoting

what's the diffence between MSMQ and .net Remoting and which one is better?
Mohan
  • 907
  • 5
  • 22
  • 45
0
votes
3 answers

MSMQ C# implementation using service (ServiceBase)

I will be using MSMQ in C# to read messages; and I am putting this in Window Service so on OnStart I will start reading messages using queue.Receive method which would be blocking/synchronous call. And OnEnd method I want to stop the queue with…
Ocean
  • 655
  • 2
  • 8
  • 21
0
votes
0 answers

MSMQ with transactional support and Transport security

I am looking for a working reference sample MSMQ remote receive and remote send with transactional support and transport level security. I have looked into Microsoft documentation and it talks about Message Encryption in theory but I couldn't see a…
Ragunath
  • 103
  • 1
  • 6
0
votes
1 answer

How can my WCF service recover from unavailable message queue?

I have a WCF service that receives messages from the Microsoft Message Queue (netMsmqBinding). I want my service to recover if the message queue is unavailable. My code should fail to open the service, but then try again after a delay. I have code…
Andrew Shepherd
  • 44,254
  • 30
  • 139
  • 205
0
votes
1 answer

msmq should storage match on sending and recieving servers

I am trying to send a load of messages to MSMQ in transactional. Had a storage issue and we bumped up the msmq storage on the receiving machine, with storage as is (1GB default) on sending machine. We still are receiving issue, and wanted to confirm…
0
votes
1 answer

How to configure a Generic Service in Windows Failover Cluster to use clustered instead of local MSMQ

Running Windows 2008 R2 Datacenter. We have Windows services that receive messages via MSMQ. We are adding a two node cluster and trying to get the services running there. We have added Message Queueing through Failover Cluster Manager and created…
mandersen
  • 13
  • 1
  • 5
0
votes
1 answer

Regarding the scenarios of protocol usage in WCF

WCF supports various protocols like TCP, HTTP, HTTPS, Named Pipes, MSMQ. Please can you provide scenarios based on which the developer will choose an appropriate protocol when developing the WCF service project? Also, can we have more than 1…
variable
  • 8,262
  • 9
  • 95
  • 215
0
votes
1 answer

Spurious MSMQ timeout errors in Windows Event Log

I've a Windows service that polls an MSMQ Queue and dispatches incoming messages to handlers. When I want the service to shutdown it won't, unless I force the Queue's Receive to timeout after some period of time. If I don't the windows service…
Andrew Matthews
  • 3,006
  • 2
  • 29
  • 42