The main obstacle is that queue managers send messages, not applications. So
you would need an MSMQ queue manager on the Linux machine that your
application can talk to. You could in theory write your own queue manager
which was able to send and receive messages; not as simple as it sounds as
there are layers of acknowledgement communication to take into account. MSDN
is a good place to start as all the protocols have been published:
Application Services and .NET Framework Protocols
http://msdn.microsoft.com/en-us/library/cc441976.aspx
and specifically:
[MC-MQSRM]: Message Queuing (MSMQ): SOAP Reliable Messaging Protocol (SRMP)
http://msdn.microsoft.com/en-us/library/cc219016.aspx
Failing that, there may be a 3rd party client you can use to support your
application.
Cheers
John Breakwell (MSFT)
"Srini" <Sr...@discussions.microsoft.com> wrote in message
news:B99F5E82-2AB1-4FE0...@microsoft.com...