vote up 2 vote down star
1

My code :

  string _path = "mymachine\\Private$\\example";
  // create a message queue object
  MessageQueue MQueue = new MessageQueue(_path);

  // create the message and set the base properties
  Message Msg = new Message("Messagem");
  Msg.ResponseQueue = MQueue;
  Msg.Priority = MessagePriority.Normal;
  Msg.UseJournalQueue = true;
  Msg.Label = "gps1";      

  // send the message
  MQueue.Send(Msg);

  // close the mesage queue
  MQueue.Close();

No error, but nothing in my MessageQueue... Any help?

flag

1 Answer

vote up 1 vote down check

I found the problem... My MessageQueue was created with transaction true...

link|flag
That is an annoying issue with MSMQ (or the .NET wrapper, I'm not sure where the issue comes in). – Harper Shelby Apr 1 at 16:45
Correct. You need to replace the last two methods with.. MQueue.Send(Msg, transaction); transaction.Commit(); MQueue.Close(); .. Otherwise, when you create the new Queue, turn transactions off -> New MessageQueue(_path, false); – Pure.Krome Jul 29 at 5:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.