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

why doesn't server.connect() work when server.create() does?

In setting up a simple streaminsight app, I am running into the issue where server.create() works and server.connect() fails. I am not sure what could be a potential cause. EDIT: Source code here: http://pastebin.com/XigdxXLd My setup: private msmq…
brainydexter
  • 19,826
  • 28
  • 77
  • 115
0
votes
1 answer

Send XML message to MSMQ without any formatting

I need to send an XMLDocument object to MSMQ. I don’t have a class to deserialize it into (the xml may vary). The default formatter, XMLMessageFormatter, will “pretty print” the object. This causes a problem since Will be converted…
0
votes
0 answers

In C# MSMQ ,How to check Receiving application had received messages from Queue messages or not

I am having C# application where I am using MSMQ to send/receive message from one application to another. In this application I had created private non transactional queue. On live environment, in one day more then 5000+ message process through this…
0
votes
1 answer

MSMQ 4.0 & .NET

Is there a way that MSMQ would invoke a dll written in .NET? For example, I would like to create a messaging queue that would accept messages with a label. Then, can the queue invoke a different class object, based on the value in the label? I…
Skadoosh
  • 2,575
  • 8
  • 40
  • 53
0
votes
2 answers

Singleton class firing event only once

I am new writing singleton classes but I am running into a weird behavior. On my singleton class I have an event that is only firing once. This event is the ReceiveCompleted of the System.Messaging.MessageQueue class. My singleton class has a method…
user3614070
  • 131
  • 2
  • 11
0
votes
1 answer

(c#)How to implement a high performance duplicate check?

i want to find out a high performance duplicate check way. does anybody can help me ? i implement the check as the below, but now, i hope the speed can catch up sending message into a queue(MSMQ), so the old way is not fit with us . my old…
0
votes
1 answer

Storage capacity of MSMQ on Windows 7

Is there a storage limit for MSMQ on Windows 7? I read that for versions older than 3.0, there is a 8GB limit. But again in a white paper read MSMQ 3.0 message storage is now limited only by disk space. In particular, MSMQ 3.0 has relaxed the 2…
Tora
  • 1
  • 2
0
votes
0 answers

How to send a message to a remote Queue using MSMQ C#

I'm trying to make a private Queue in a external pc to send messages. I've writed the code to send and recive messages in a queue on my own pc and works fine. But i dont really understand very well how to make it on a remote pc. In this line: var…
0
votes
1 answer

Problem Writing to Private Message Queue on Windows 7 64-Bit from .NET 2.0 Web Service

I have the following code in a web method of a .NET 2.0 VB web service application: _ Public Function UpdateCall( ByVal callChange As CallChangeMessage) As Boolean Dim result…
Rich Miller
  • 810
  • 1
  • 9
  • 20
0
votes
1 answer

problem whith MSMQ while changing OS from xp to win7

In ower system we have two machines which connected by MSMSQ. one machine contains two static ip addresses (each ip belongs to other lan) and the second one using one ip address. We have a proccedure which change the ip address of the machine with…
0
votes
1 answer

WCF over MSMQ, 403 Service unavailable

I setup a WCF service to work over HTTP and MSMQ. It kind of works. The HTTP protocol works 100%. The problem is with net.msmq. When I check the queue, the messages have gone down by 1 which I assume means it's being processed. But at the same time,…
Dustin Davis
  • 14,482
  • 13
  • 63
  • 119
0
votes
1 answer

How to send message to Microsoft EventHub with Db Transaction?

I want to send the event to Microsoft Event-hub with Db transaction: Explanation: User hit a endpoint of order creation. OrderService accept the order and put that order into the db. Now Order service want to send that orderId as event to another…
0
votes
1 answer

Delay in getting message from Microsoft Message Queue

There is a delay of 8 to 9 minutes in receiving the message in user's machine from a server's MSMQ. There is no blocks in network connectivity. How to find the root cause of the issue. Can any one help. It is happening in many machines.Initially,…
0
votes
1 answer

How to add and use MessageQueues to ASP.NET MVC project?

I have a ASP.NET MVC project and I need to use Message Queues (MSMQ as I understand it) to send messages from the client to my server, but I can't seem to add System.Messages to a c# class. I get an error when trying to add the namespace: I…
MARS
  • 499
  • 1
  • 9
  • 25
0
votes
0 answers

MSMQ Receive method slowness

I'm hardly receiving 20~50 messages per second using MQ.Receive() method, as shown below. private void ListenQueue() { while(true) { try { while(true) { …