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 create MSQM Trigger Rules using Powershell?

I can create MSMQ queues using the following powershell command: New-MsmqQueue I can't find a way to create Trigger Rules via powershell (Computer Management > Services and Applications > Message Queuing > Triggers > Rules) Is it possible, and if…
Eternal21
  • 4,190
  • 2
  • 48
  • 63
0
votes
2 answers

Adding custom MSMQ properties

I am designing an application that creates, uses and deletes MSMQ message queues. Each queue has custom properties which I am currently storing in a file. I find this messy however and the whole system could go down if this file were to dissappear.…
Shane
  • 875
  • 1
  • 6
  • 24
0
votes
1 answer

MSMQ - how to Communicate between two application

I started looking into MSMQ very recently so i have basic doubts . If two application needs to communicate lets say server and client I think both will share the same MQ address and when the client update then the Server will be having the MSMQ…
satish
  • 2,425
  • 3
  • 23
  • 40
0
votes
1 answer

How to send message to remote queue without saving messages in outgoing queue while remote machine is not connected?

I have a remote machine that has a private queue and the server sends these messages to the remote queue. This is working fine. The issue is when the remote machine is not connected to network or turned off, the messages are saved in outgoing queue…
Apurva Saxena
  • 448
  • 1
  • 5
  • 13
0
votes
1 answer

Is there a way to execute my wpf application using msmq trigger?

My Executable file (C# WPF Solution) is not running properly when being called by MSMQ Trigger. I am sending a notification mesasge to the queue (named sometestname): I have a class called MyNotification that includes this static method: public…
Galilo Galilo
  • 519
  • 5
  • 22
0
votes
0 answers

MSMQ - Error while trying to Receive message

I am new to MSMQ and working on the existing code. Here is my code. bool queueReadStatus = true; while (queueReadStatus) { try { Message message = messageQueue.Receive(new TimeSpan(0, 0, 1)); …
Chatra
  • 2,989
  • 7
  • 40
  • 73
0
votes
1 answer

Programatically Added MSMQ Queues Different From Manual Creation

We are in the process of migrating an app from a Server 2008 set of servers to Server 2016, and since this app has ~75 private MSMQ queues, I wrote a very basic C# utility (just a console app) to get the list from our production server and recreate…
Scott Salyer
  • 2,165
  • 7
  • 45
  • 82
0
votes
1 answer

Powershell script for server 2008 to get MSMQ security property values

I'm looking to write a PowerShell script to verify the security configuration of MSMQ on some of our servers, e.g. the contents of the Security tab when I run compmgmt.msc, then go to Computer Management (local) -> Services and Applications ->…
0
votes
1 answer

WCF MSMQ service not retrying when using transactional

I have a wcf service that I am hosting within a windows service on a windows 2003 server that is listening on a MSMQ queue. I set the ReceiveRetryCount = 2 on the netmsmqbinding. The service was setup to use transactions…
trouta
  • 426
  • 3
  • 12
0
votes
0 answers

MSMQ enumerator.RemoveCurrent exits message queue iteration

I'm facing a problem and can't work it arround. Iterating through the messages queue , I wanna resend or delete some of them, but as soon as I try to remove the current message, it removes the message but my iteration exits and the program…
fgc
  • 79
  • 1
  • 1
  • 13
0
votes
1 answer

MSMQ requires AD certificate, but we are using a service account

Issue: How do you create the AD certificates MSMQ requires of an AD account, which are auto-created per computer in AD upon first login, without actually logging on as said account? Background: We are using WCF + MSMQ for a project. The "MSMQ…
Bill
  • 51
  • 3
0
votes
1 answer

Encrypting WCF message (net.msmq) when signing is specified

I'm using WCF to send a message via MSMQ (net.msmq protocol). All is going well the BizTalk server receives the message and processes it. However, when I looked into the SVCLOG, I see the message is encrypted when I specifically set…
Richard Schneider
  • 34,944
  • 9
  • 57
  • 73
0
votes
1 answer

MSMQ, distributed topology, pubsub - queue config question

I am trying to set up a pub sub using msmq and rhino.esb. I have the publisher on one server and the subscriber on the other. When running locally with everything set to localhost it works fine. My question is this - if this is my configuration for…
user156888
0
votes
1 answer

Does NGiNX Ingress Controller of Azure Kubernetes support multiple protocol

I am looking for a one stop solution to support multiple protocol request to my backend, such as MSMQ, HTTP, MQTT. Can I achieve this using Azure Kubernetes NGiNX ingress controller?
shebinap
  • 31
  • 1
0
votes
1 answer

Asynchronous communication with WCF

I am developing a generic logging object which will be used within all of our future applications. It will submit a log to MSMQ, which will then asynchronously send it off to our server that will log that message to a database. Currently I am trying…
jnevelson
  • 2,092
  • 2
  • 21
  • 31