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

Is it possible to send messages to msmq from azure web app

I would like to setup an azure web service and an azure vm that is running msmq. Can I send messages to the vm's msmq? I noticed in the documentation for msmq on azure, that sending messages with http to msmq on azure is not supported, but I thought…
user583824
0
votes
1 answer

Can a WCF service object implementing a contract for a net.msmq endpoint also implement a callback contract for a net.tcp endpoint?

Trying to implement a MSMQ-backed WCF PubSub. I understand that net.msmq is one-way; however when I use a single service object to implement the net.msmq endpoint for reading from the underlying queue, and a net.tcp endpoint for listeners to…
andrewbadera
  • 1,372
  • 9
  • 19
0
votes
1 answer

MSMQ in cluster behavior on node switch

I just installed MSMQ in cluster and now test how it behaves. It appears, that when active cluster node is switched all messages, which were in the queue, are lost (even when we switch back to original node). For me it seems like undesired…
0
votes
1 answer

MSMQ in cluster

I configured MSMQ to run in cluster. Cluster consists of two Hyper-V virtual machines and uses common storage on third virtual machine (all virtual machines share windows domain and they see each other through the network). The fail-over cluster…
0
votes
1 answer

how to use .net view in queue explorer

Our company uses Queue Explorer 4.0 pro by cogin and I've been searching all over their website and the only thing I can find on using their .net view is this little blurp about viewing a message being parsed with a .net assembly: blog post so for…
Robert Snyder
  • 2,399
  • 4
  • 33
  • 65
0
votes
1 answer

Reading Message from MSMQ using C++

I am currently working on a C++ application that will read the message from the MSMQ..... this is the code that I ran : HRESULT ReadingDestQueue( WCHAR * wszQueueName, WCHAR * wszComputerName ) { // Define the required constants and variables. …
Soorya J
  • 23
  • 12
0
votes
0 answers

Configuring MSMQ to receive Custom Structs

I was wondering if there was a way to set up a queue in c# to receive custom structs. For example, I want to receive and store messages of the following structure into a queue: public struct TPCANMsg { /// /// 11/29-bit message…
JS61095
  • 1
  • 1
0
votes
1 answer

Poison messages without transactions

Can message become poisoned if it's non-transactional? The documentation seems to imply not, but I'm not finding a direct statement one way or the other.
InteXX
  • 6,135
  • 6
  • 43
  • 80
0
votes
1 answer

NServiceBus 6.4.3 configured to MSMQ fails on startup

I am experimenting with using NServiceBus with MSMQ as transport. A very simple example: static void Main(string[] args) { var endpointConfiguration = new EndpointConfiguration("myappqueue"); …
Carsten Gehling
  • 1,218
  • 1
  • 13
  • 31
0
votes
1 answer

How to remove the Msmq Message Quota and Journal Quota by Powershell?

I am trying to remove / uncheck the Msmq Message and Journal Quota limitation in 2008 R2 via the Powershell script. I've got the following script working on my machine (Windows 10). But it's not working on any of our server at all (which are 2008…
TTCG
  • 8,805
  • 31
  • 93
  • 141
0
votes
1 answer

C# Console application pause working until right click on Console

I'm building a c# console application which read messages from MSMQ(Microsoft Message Queuing), I expected it to run forever but after a day running it stop reading message from MSMQ until I right click on its Console, my problem seems to be alittle…
user2905416
  • 404
  • 7
  • 21
0
votes
0 answers

Nservicebus Message stuck and not being processed or Handle

We have two ASP.net web applications integrated with nservicebus with following configuration App 1 is running nuservicebus v4 and App 2 is running nservicebus v3. When I send the message from app 1 to app 2 it works fine and get processed. While…
0
votes
1 answer

Getting time out while running on msmq queue on more application hit

We have batch file for processing the applications through msmq, when the application count is more for ex: 40 at at a time, when it is picking the application in queue, remaining applications are getting time out, as the waiting time for all…
0
votes
0 answers

Connecting to remote MSMQ

I'm writing my first application using MSMQ and everything works well with local queues on my development machine. I cannot seem to connect to a remote queue when I tested it. I have 10 Windows 10 Pro installation (not domain joined, but I have…
0
votes
0 answers

Windows Service not continuously picking messages from msmq

Windows service is not picking messages from MSMQ. Whenever there is a message, I have to go to Services stop and start my service, only then it picks. Here is the code. Please let me know what have to done to make service continuously watch for…
Diya
  • 31
  • 4