I keep seeing documentation saying that its not possible to send to a remote transactional msmq queue, outside the scope of a transaction. I'm finding this hard to believe because I think I've been doing exactly that for weeks now. I have a small app that posts messages to a remote queue that is transactional. Just to experiment with performance, various versions of the client have either used a TransactionScope to wrap the send operation or not. Ultimately, using some compensating transaction logic seemed a lot smarter and faster, so use of TransactionScope on both client and server were dropped. The thing is, messages still seem to show up on the queue, and get processed by the service without any problem.
Can anybody explain to me what it is that I'm missing here? Am I just being thick? Feel free to say so (it certainly won't be the first time).