Subscribing to MSMQ over the internet

Posted by Nathan Palmer on Stack Overflow See other posts from Stack Overflow or by Nathan Palmer
Published on 2010-05-15T01:48:03Z Indexed on 2010/05/15 1:54 UTC
Read the original article Hit count: 306

Filed under:
|
|
|
|

I haven't been able to find a clear answer to this problem. Is there a good way to subscribe to a MSMQ through the internet? Ideally I need security both in authentication and encryption for this connection. But I would like the subscriber to act just like any other client that would be subscribed on the local network. I believe I have a couple of options here

  • Expose the MSMQ ports publicly
  • Put the MSMQ behind some type of WCF service (not sure if that works for a subscriber)

What other options do I have? We're sitting in a .NET environment and the main problem domain that is trying to be solved is to change the remote connections from a pulling system to an event based system to reduce the load on the main server.

© Stack Overflow or respective owner

Related posts about servicebus

Related posts about .NET