Trouble sending messages via MSMQ from a windowsmobile device - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:14:32Z http://stackoverflow.com/feeds/question/935893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/935893/trouble-sending-messages-via-msmq-from-a-windowsmobile-device 0 Trouble sending messages via MSMQ from a windowsmobile device Michael M. 2009-06-01T17:46:29Z 2009-10-09T15:00:03Z <p>Hi,</p> <p>I am attempting to send a message using MSMQ from a mobile device to a remote private queue on a server.</p> <p>Whats happening? I do not experience any errors when the mobile code sends the message. If I look at the msmq folder on the mobile device it has indeed created a .oq (outbound queue) file for the remote that it is sending to.</p> <p>I am using the Direct=TCP with an IP address in the formatname for the queue. I have verified that identical code runs without issue from my desktop. The message is delivered correctly. </p> <p>I do not believe the code to be the issue. Perhaps I am missing something that must be done in the mobile environment to allow the message to leave the queue and be delivered to the server.</p> <p>Things I have verified or done to troubleshoot:</p> <ol> <li>I have verified that everything reported from visadm using verify is acceptable.</li> <li>Binary is enabled for MSMQ.</li> <li>The log reports that MSMQ has started without error.</li> <li>All SDK certs are installed on the device.</li> <li>A .oq file is created when an outbound message is sent.</li> <li>Journal and deadletter are enabled on the message. (Nothing is reported by the server as undeliverable- I do not believe it is ever connecting)</li> <li>The network is active and valid (I can visit web pages hosted on the server via the browser)</li> <li>The servers MSMQ is valid (I can use identical code from the desktop and deliver messages)</li> <li>Via visadm the status reports correctly on the mobile device for MSMQ. </li> </ol> <p>I am hoping someone may be familiar with MSMQ on windows mobile who may be able to give me some advice as to what I may not have checked or enabled.</p> <p>I am using .Net CF 3.5 on the device and coding in C# though as I stated the code doesnt appear to be the issue.</p> <p>Thanks in advance for any help</p> http://stackoverflow.com/questions/935893/trouble-sending-messages-via-msmq-from-a-windowsmobile-device/936967#936967 1 Answer by Michael M. for Trouble sending messages via MSMQ from a windowsmobile device Michael M. 2009-06-01T21:48:02Z 2009-06-01T21:48:02Z <p>It seems the issue was that the server uses a Transactional Message Queue. Once I added ;XACTONLY to the end of my message queue string and altered the Send method to use System.Messaging.MessageQueueTransactionType.Single it worked. You would think that it would throw an error or something to let you know this was needed.</p>