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 access MSMQ in web proxy class

I've created a wcf web service hosted on IIS 5.1. In the service implementation class there is a method GetAlarm which access the MSMQ on that system. In a sample win form application i instantiate web proxy to call GetAlarm method. But the problem…
Arvind Bhatt
  • 157
  • 2
  • 3
  • 13
0
votes
0 answers

WCF hosted on IIS (uses MSMQ) cannot connect to SQL server

I'm moving existing test environment (hosted on Azure) into new BizSpark Azure subscription. In old setup, I had API, WCF and SQL Server hosted on same VM. The new configuration is: API and WCF on VM1 (subscription 1)SQL Server on VM2 (subscription…
nikola
  • 13
  • 3
0
votes
1 answer

Reading private queues using a windows service listener

I am trying to read queue messages from a private queue in the local system using a service. I have created the service which reads the queue and updates status to an access DB. I have setup the service and the service is up and running. I am stuck…
kjayakum
  • 1,205
  • 3
  • 14
  • 15
0
votes
1 answer

Windows Server 2012 - MSMQ - Journaling keeps disabling itself

I'm trying to enabling journaling on my 2012 server - I have x2 queues on the host. One, I was able to enable this function and it has since stayed enabled. The other queue, I enable journaling on and it seems to be enabled, but after a few…
Jack McCauley
  • 43
  • 1
  • 9
0
votes
1 answer

MSMQ Transactions

I have created a transactional que in MSMQ. Then I successfully submit two messages to that queue. The first message will cause an error in the processor and the MSMQ transaction will roll back; hence the message will get put back in the queue. …
Iftikhar Ali
  • 369
  • 3
  • 12
0
votes
1 answer

Adding Message to MessageQueue programmatically

I have the old 'non-transactional' queue (MessageQueue) which may have messages in it. Now programatically, I want to: 1. Get the messages from old queue ----> this is done 2. Create new 'transactional' queue ---> this is also done 3. Copy messages…
Learner
  • 4,661
  • 9
  • 56
  • 102
0
votes
1 answer

Transaction support in Queues (MSMQ)

I'm trying to understand the concept of transaction messaging on MSMQ as well as transaction support in wcf. For Queues with transaction support, does it mean the following set of operations will be automatic? Client A on Machine 1 writes a row in…
Iftikhar Ali
  • 369
  • 3
  • 12
0
votes
1 answer

Change format for MSMQ body

I have an object which I would like to store in XML format in an MSMQ queue. What I expect it to appear in the queue body is this: Hello World! 5 However, when I store…
Sam Bunting
  • 845
  • 1
  • 15
  • 36
0
votes
0 answers

Wait/Delay before firing event

I am receiving messages from MSMQ. An event is fired when a message is received, in some situations a delay be required before the event is fired. At the moment I have a Task.Delay to wait for the specified time before firing the event. I am…
Andrew
  • 691
  • 6
  • 17
0
votes
1 answer

Remove MSMQ storage limits with powershell

How do I remove storage limits (queue quota) on specific queues with powershell? To set storage limits to some value with powershell, we can use the Set-MsmqQueue cmdlet: Get-MsmqQueue myQueue | Set-MsmqQueue -QueueQuota 50000 To remove the…
stalskal
  • 1,181
  • 1
  • 8
  • 16
0
votes
2 answers

Does LINQ remove messages from MSMQ?

I am contemplating using LINQ to read messages off a queue, like this guy: http://www.sharepoint4arabs.com/AymanElHattab/Lists/Posts/Post.aspx?ID=8 But I'm wondering if this consumes messages from the queue or not. Ideally I'd like this to just…
TimH
  • 1,012
  • 1
  • 14
  • 24
0
votes
1 answer

MSMQ over HTTP (WAN)

I'm trying to Send a message from One Machine to Another, over the internet, using MSMQ (over http). I have enabled All the correct bits and pieces as far as I am aware, through add features and roles. MSMQ Over HTTP has also been included. I have…
The_Chud
  • 991
  • 1
  • 11
  • 24
0
votes
1 answer

Same message to several services

I have one MSMQ queue which is listened by five windows services. I used BeginPeek and PeekCompleted event for this purpose. My problem is among five services, only one service is the right recipient of the message. All four just read message, but…
Fayaz
  • 5
  • 3
0
votes
3 answers

Processing Messages from a Queue on a Delay using C# and VS.NET 2005

This is the setup for the queue: The queue is public and marked as transactional. A web service is responsible for inserting messages into the queue. A Windows service is listening in on the queue Given that, how can I only process messages that…
j j
0
votes
1 answer

How can I create a windows service that listens to a directory and then sftp's it to a local directory

I'm looking for a starting point and I know my solution has to incorporate MSMQ as part of it. I have a server that users drop a file into a directory. I have a client that listens to the directory and when something is dropped into that directory…
gsirianni
  • 1,334
  • 2
  • 18
  • 35
1 2 3
99
100