3
votes
WCF MSMQ - How do I handle message failure
There's a sample in the SDK that might be useful in your case. Basically, what it does is attach an IErrorHandler implementation to your service that will catch the error when WCF declares the mess …
1
vote
I want to log the Poison message that my wcf service is dropping using MSMQ 3.0 and windows 2003
You can implement a custom IErrorHandler and associate it with your service us …
0
votes
How do you specify a message label when using WCF and NetMsmqBinding?
George: No answer, but I'm curious to know how you plan to use the MSMQ label together with NetMsmqBinding.
The reason I ask is that NetMsmqBinding was really created to support the scenari …
0
votes
Reading the MSMQ transcational dead letter queue
You're probably referencing the queue using the wrong kind of FormatName or path. What does yours look like?
…
1
vote
Reading the MSMQ transcational dead letter queue
Try this formatname instead and see if it works:
@"FORMATNAME:DIRECT=OS:.\SYSTEM$;DeadXact"
…
2
votes
Resend to MSMQ after exception
Couple of points: The best way to do this would be using a transaction spanning both queues; that way you'll know you won't lose a message.
The second part of it is to be careful about how …
0
votes
MSMQ throws away messages if the destination queue does not exist?
It really depends a lot on what kind of queues you're using and what assurances you asked MSMQ to take with the messages. Remember that messages in MSMQ have time to live times that can expire whil …
1
vote
Setting permissions on a MSMQ queue in script
There's nothing built into powershell for this, but you can use the .NET framework classes. Just load System.Messaging.dll and use MessageQueue.SetPermissions() to change the ACL on the queue.
…
1
vote
Wcf-MSMQ: letter is being delivered, but service is not called?
Are you turning off security in both the client and service configurations? If they are not matched, the service might be faulting and putting the message back into the queue (particularly if you a …
0
votes
Automated MSMQ Setup with Powershell
There's no reason you can't use System.Messaging from within PowerShell. Just load the right assembly and you can create/delete/hook your queues to your heart's content. Creating a custom cmdlet is …
2
votes
Correct way to host a *stable* WCF MSMQ windows service
I'm not sure why your service host is hanging, but I can definitely think of a couple of things to try to make it more reliable:
I'd make sure to hook into the …
0
votes
WCF / MSMQ “time-to-be-received has elapsed” dead letter queue issue
I'm not 100% sure, but I believe that the TimeToLive property only sets the Time-To-Reach-Queue msmq property, but I don't know of a built-in way right now of setting the Time-To-Be-Received proper …
