up vote 4 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

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

link|improve this answer
That is an annoying issue with MSMQ (or the .NET wrapper, I'm not sure where the issue comes in). – Harper Shelby Apr 1 '09 at 16:45
1  
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 '09 at 5:16
feedback

Your Answer

 
or
required, but never shown

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