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

MSMQ Message from C# to C++ body is parsed with each letter being separated by '0

I'm sending a message to an MSMQ from C# (ActiveXFormatter) and trying to read it in C++. The body that I read is indeed the body of the message I sent but there is a '0' between each two characters (in C++). I think it has to do with encoding but…
John John
  • 23
  • 5
0
votes
0 answers

MSMQ authenticate using local user

Here is my scenario Server 1 is on the internal network(in domain) Server 2 is in a DMZ(outside domain) Server 2 has a private MSMQ that server 1 needs to access. Server 1 request MQ access via a C# console app My problem is this: How can i create…
Birger
  • 349
  • 1
  • 4
  • 18
0
votes
0 answers

How to Send and Receive MSMQ messages faster?

I am reading a CSV file line by line. I will process the line and then dump it into another CSV file (simplified version of the problem). I am using MSMQ as a "fire and forget" mechanism. However, it's significantly slower than expected (more than…
borat
  • 126
  • 1
  • 3
  • 13
0
votes
1 answer

MSMQ - Using remote read and remote send on the same queue

If using MSMQ 3.0, or 4.0: I fully understand that the following is not a common, or "correct" way to use a queue, but the point is solving a specific issue immediately. Is it possible to perform a read from a remote queue and a write to the same…
0
votes
1 answer

MSMQ: The signature is invalid - how to resolve?

I am hitting my head against a wall with this one and could do with some inspiration. I have a .NET 4.5.2 app that uses System.Messaging.MessageQueue to send MSMQ messages to a transaction, authenticated, private queue on the local machine. This…
SirKumbskull
  • 137
  • 2
  • 11
0
votes
1 answer

MSMQ c++ receive message problem

I am trying to read messages from a MSMQ queue in c++. The queue is successfully open, but I am having problems reading any message from it. This code sample is taken from MSDN and modified in a few places. Here is the code: // Define the required…
Alina Danila
  • 1,683
  • 1
  • 24
  • 60
0
votes
0 answers

"Remote computer is not available" with MSMQ purging

I have a server (say server A) where I configured a private MSMQ for queueing the messages and deployed an application on another server (say server B) to send messages. Server A and server B are not in the same network or domain. We have opened…
Kesiya Abraham
  • 753
  • 3
  • 10
  • 24
0
votes
2 answers

How to receive messages formatted by The BinaryLogFormatter

I'm using the MS Patterns and Practices Enterprise Library MsmqTraceListener to log entries to a private queue using the BinaryLogFormatter. I would now like to read those log entries off the queue. I need to set the Formatter property of the…
Ralph Shillington
  • 20,718
  • 23
  • 91
  • 154
0
votes
1 answer

msmq AppSpecific was not retrieved when receiving the message

I want to transfer messages using MSMQ. When I'm sending a message, I pass an enum (StudentMessageType) as AppSpecific so I can recognize what should I do in the destination. But when I try to receive the message, I can't access AppSpecific property…
Chainsw
  • 37
  • 7
0
votes
1 answer

MSMQ http\https Azure AD Authentication

I need to send an MSMQ message in c# through https to a web server using an Azure AD Bearer token. The web server is hosted in Azure with Azure AD. The server is already hosting an existing web API in which we use Azure AD issued bearer tokens to…
BlabzX
  • 105
  • 3
  • 10
0
votes
1 answer

How to read data from MSMQ in C# ? (please note - Data is not written in C# )

I am using nodejs, msmq and .net as technology stack in my project. I am collecting data from hardware using nodejs script and writing into MSMQ. I want to read this MSMQ in .net but I am getting below error. In addition I am not able to receive the…
0
votes
1 answer

MSMQ Read message not working when trying to read from a server which is in WorkGroup

I have private queue created with Anonymous, Everyone, NetworkService full control on a server which is in workgroup mode. I can send a message using .net stub without any issue where as it throws exception while receiving the message. I tried to…
user3067170
  • 193
  • 4
  • 14
0
votes
2 answers

Why it is very slow to read the message from the queue in parallel?

I've developed a windows service that is writing 1500 messages in every second in a MSMQ. In another service, I am reading that messages from queue in parallel and process them. But reading from queue is so slow and I think a bottleneck is the…
user3649344
0
votes
0 answers

MSMQ for multiple clients in C# application

I am new to MSMQ in C#. This is the requirement: I have one application to publish the message which need to be subscribed by multiple applications. The problem I am facing is only one client is able to get message, but other clients are not.…
0
votes
2 answers

MSMQ + WCF in a hosted environment

We have several systems that we're going to switch to use some type of reliable architecture and using messaging is how we want to do it. The thought is that we're going to use some cheap hosting (shared, not dedicated) to make calls but we need the…
Dustin Davis
  • 14,482
  • 13
  • 63
  • 119