Eugene Tolmachev
Eugene Tolmachev

Reputation: 831

Do MassTransit or nServiceBus support MSMQ over HTTP transport?

I understand it's available since MSMQ 3.0, is it available via any of the .NET ESBs? Is this possible with other MQ transports (ActiveMQ, etc)?

Thanks, E.

Upvotes: 2

Views: 1437

Answers (2)

Andreas Öhlund
Andreas Öhlund

Reputation: 5273

NServiceBus use msmq as its main transport but does not support the http option for Msmq. Can you elaborate on what you're trying to achieve? Perhaps the NServiceBus gateway component is what you need?

http://docs.particular.net/nservicebus/gateway/

Hope this helps!

Upvotes: 6

Travis
Travis

Reputation: 10547

MassTransit does not support MSMQ over HTTP in any way. RabbitMQ only requires a single port open for communication but it is not the HTTP (80 or 443) port.

Upvotes: 0

Related Questions