views:

24

answers:

1

I'm trying to read a public MSMQ from a remote (Server 2008) machine.

I know XP has MSMQ 3.0, and I've found some information that it doesn't support transactional, non-local receiving. Does that include trying to read from a remote queue?

I've tried all sorts of combinations, and the only way I can read a message from the queue is by using:

Msg = mDSQueue.Receive(MessageQueueTransactionType.Single);

I need to be able to do this in a transaction. Any tips? It seems information for public MSMQ's, and using them remotely, are hard to come by.

//in before reading remotely has poor performance.

+1  A: 
John Breakwell
Thanks... was hoping I would be able to debug locally. Still can't get it working between two Server 2008 machines though.
Luke
What error code do you get when trying with two Windows Server 2008 machines?
John Breakwell