Tagged Questions
The system.messaging tag has no wiki summary.
5
votes
3answers
686 views
MSMQ: Is it possible to get the message count of a remote private queue?
I know there are other questions on this, but non actually answer this question.
The Code I have is:
using (var mQ = new MessageQueue(qPath))
{
...
4
votes
5answers
853 views
Using MSMQ - System.Messaging versus WCF
I have to port a VB 6.0 app to VB.Net (Framework 3.5). The application uses MSMQ heavily. I'm trying to figure out what are the advantages of using WCF over good ole System.Messaging. Are there any ...
2
votes
1answer
300 views
How to move a msmq message to a subqueue
Using the System.Messaging classes, how do I move a msmq message (in this case a poison message) to a subqueue?
Seems like this should be simple, but I haven't been able to figure it out.
2
votes
1answer
259 views
MessageQueue.Send occasionally fails with InvalidOperationException, BadEnumerator
I have a non-tx queue with a receiver in one process and a PowerShell script which uses the MessageQueue.Send( object, label ) method to enqueue messages.
Occasionally I get this weird error in the ...
2
votes
2answers
2k views
Problem adding GAC reference to VS2008 project
Okay, so this isn't strictly a programming question, but it is a programming-related question.
I have a C# winforms project that I am trying to add a reference to the System.Messaging dll.
However, ...
1
vote
1answer
172 views
MSMQ ReceiveByCorrelationID
We have a core system which communicates with its clients and other internal systems async through MSMQ. This is a good fit since clients are mobile phones sending sms’es and other systems has MQ ...
1
vote
0answers
133 views
System.Messaging.MessageQueue and MSMQ COM API interaction
In Pro MSMQ from Apress, it says on p. 26, that queues grouped by the same Service Type GUID can be reached by client applications using "the Directory Service without needing to know their physical ...
1
vote
5answers
252 views
.Net User Messaging System
I am wondering if there is a framework out there for .NET to help me with sending messages to users. I would love to be able to write all my messages to a single repository. I would then like to be ...
0
votes
0answers
32 views
Is it possible to return System.Messaging.Message in a serviceContract?
Hej,
I am using the httpBinding / netTcpBinding in my WCF service, I am trying to replace some .Net remoting code with WCF. This was my first test when translating the methods of my .Net remoting to ...